package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import java.util.Date;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.io.Serializable;
|
import lombok.Data;
|
|
|
/**
|
* @auther lyq
|
* @create 2021-08-26 14:26:50
|
* @describe 实体类
|
*/
|
|
@Data
|
@TableName("com_act_micro_wish_feedback")
|
public class ComActMicroWishFeedbackDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 微心愿Id
|
*/
|
private Long microId;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
/**
|
* 反馈内容
|
*/
|
private String content;
|
|
/**
|
* 反馈图片
|
*/
|
private String imgUrl;
|
|
/**
|
* 反馈时间
|
*/
|
private Date createTime;
|
|
@Override
|
public String toString() {
|
return "ComActMicroWishFeedbackDO{" +
|
"id=" + id +
|
", microId=" + microId +
|
", userId=" + userId +
|
", content=" + content +
|
", imgUrl=" + imgUrl +
|
", createTime=" + createTime +
|
"}";
|
}
|
}
|