package com.hjx.personalcenter.model; import java.util.List; /** * Created by h on 2017/8/25. */ public class FeedBackInfo { /** * feedtype : 个人中心 * userId : 230 * content : dasdasde * contact : 13526654520 * feedBackDate : 2013-10-20 * imgUrl : [{"imgUrl":"dess.jpg"},{"imgUrl":"ssss.jpg"},{"imgUrl":"dddd.jpg"}] */ private String feedtype; private Long userId; private String content; private String contact; private String feedBackDate; private List imgUrl; public String getFeedtype() { return feedtype; } public void setFeedtype(String feedtype) { this.feedtype = feedtype; } public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getContact() { return contact; } public void setContact(String contact) { this.contact = contact; } public String getFeedBackDate() { return feedBackDate; } public void setFeedBackDate(String feedBackDate) { this.feedBackDate = feedBackDate; } public List getImgUrl() { return imgUrl; } public void setImgUrl(List imgUrl) { this.imgUrl = imgUrl; } public static class ImgUrlBean { /** * imgUrl : dess.jpg */ private String imgUrl; public String getImgUrl() { return imgUrl; } public void setImgUrl(String imgUrl) { this.imgUrl = imgUrl; } } }