package com.zhujizheng.IHome.feedback.dto; import lombok.Data; import java.util.List; /** * Created with IntelliJ IDEA *

* Author: yons * Date: 2019/04/22 * Time: 02:36 * Description: * Copyright © 2019年 com.zhujizheng. All rights reserved. */ @Data public class PYPushFeedBackDTO { private Integer userId; private Long feedbackTime; private String content; private List imgs; @Data public static class PYPushFeedBackImgDTO { private String url; private Integer idx; private Integer width; private Integer height; private Integer orientation; } }