package com.panzhihua.service_user.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 意见反馈
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-12-31 13:22
|
**/
|
@Data
|
@TableName("sys_user_feedback")
|
public class SysUserFeedbackDO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 反馈内容
|
*/
|
private String content;
|
|
/**
|
* 反馈图片,多个用逗号隔开
|
*/
|
private String photoPath;
|
|
/**
|
* create_at
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
private Date createAt;
|
|
/**
|
* update_at
|
*/
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Date updateAt;
|
|
/**
|
* 用户的id
|
*/
|
private Long userId;
|
|
/**
|
* 小区id
|
*/
|
private Long areaId;
|
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
/**
|
* 状态
|
*/
|
private Integer status;
|
|
/**
|
* 问题留言或投诉建议
|
* */
|
private Integer type;
|
|
/**
|
* 关联物业id
|
* */
|
private Long propertyId;
|
private String reply;
|
}
|