package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
/**
|
* @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.AUTO)
|
private Long id;
|
|
/**
|
* 随手拍id
|
*/
|
private Long easyId;
|
|
/**
|
* 反馈内容
|
*/
|
private String feedbackContent;
|
|
/**
|
* 反馈图片地址,多个以,隔开
|
*/
|
private String feedbackImg;
|
|
/**
|
* 反馈时间
|
*/
|
private Date createAt;
|
|
/**
|
* 反馈人
|
*/
|
private Long createBy;
|
|
@Override
|
public String toString() {
|
return "ComActEasyPhotoFeedbackDO{" +
|
"id=" + id +
|
", easyId=" + easyId +
|
", feedbackContent=" + feedbackContent +
|
", feedbackImg=" + feedbackImg +
|
", createAt=" + createAt +
|
", createBy=" + createBy +
|
"}";
|
}
|
}
|