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-27 10:28:04
|
* @describe 实体类
|
*/
|
|
@Data
|
@TableName("com_act_micro_wish_operation_record")
|
public class ComActMicroWishOperationRecordDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 操作内容
|
*/
|
private String content;
|
|
/**
|
* 人员id
|
*/
|
private Long userId;
|
|
/**
|
* 心愿Id
|
*/
|
private Long wishId;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
*操作类型 1已提交 2审核通过 3 驳回 4完成集心 5 分配 6 完成 7反馈 8系统自动确认
|
*/
|
private Integer type;
|
|
/**
|
* 操作备注
|
*/
|
private String remark;
|
|
/**
|
* 反馈图片url
|
*/
|
private String imgUrl;
|
|
@Override
|
public String toString() {
|
return "ComActMicroWishOperationRecordDO{" +
|
"id=" + id +
|
", content='" + content + '\'' +
|
", userId=" + userId +
|
", wishId=" + wishId +
|
", createTime=" + createTime +
|
", type=" + type +
|
'}';
|
}
|
/**
|
*操作类型 1已提交 2审核通过 3 驳回 4完成集心 5 分配 6 完成 7反馈 8系统自动确认 9评价
|
*/
|
public interface type{
|
int ytj=1;
|
int sh=2;
|
int bh=3;
|
int jx=4;
|
int fp=5;
|
int wc=6;
|
int fk=7;
|
int zd=8;
|
int pj = 9;
|
}
|
}
|