package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* @auther lyq
|
* @create 2021-08-13 14:40:06
|
* @describe 实体类
|
*/
|
|
@Data
|
@TableName("com_act_easy_photo_feedback")
|
public class ComActEasyPhotoFeedbackDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 随手拍id
|
*/
|
private Long easyId;
|
|
/**
|
* 反馈内容
|
*/
|
private String feedbackContent;
|
|
/**
|
* 反馈图片地址,多个以,隔开
|
*/
|
private String feedbackImg;
|
|
/**
|
* 反馈时间
|
*/
|
private Date createAt;
|
|
/**
|
* 反馈人
|
*/
|
private Long createBy;
|
|
/**
|
* 反馈人员类型(1.普通反馈 2.人大代表反馈)
|
*/
|
private Integer type;
|
|
@Override
|
public String toString() {
|
return "ComActEasyPhotoFeedbackDO{" + "id=" + id + ", easyId=" + easyId + ", feedbackContent=" + feedbackContent
|
+ ", feedbackImg=" + feedbackImg + ", createAt=" + createAt + ", createBy=" + createBy + "}";
|
}
|
}
|