package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 微心愿
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-12-07 14:24
|
**/
|
@Data
|
@TableName(value = "com_act_micro_wish")
|
public class ComActMicroWishDO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 自增id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 发起人id
|
*/
|
private Long sponsorId;
|
|
/**
|
* 发起人电话号码
|
*/
|
private String sponsorPhone;
|
|
/**
|
* 微心愿名称
|
*/
|
private String wishName;
|
|
/**
|
* 状态
|
* 状态 1待审核 2待分配 3进行中 4已驳回 5待确认6 已完成
|
*/
|
private Integer status;
|
|
/**
|
* 形式 1分配人员 2发起活动
|
*/
|
private Integer form;
|
|
/**
|
* 责任人id
|
*/
|
private Long responsibleId;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/**
|
* 审核时间
|
*/
|
private Date examineAt;
|
/**
|
* 分配时间
|
*/
|
private Date distributionAt;
|
|
/**
|
* 评分
|
*/
|
private Integer score;
|
|
/**
|
* 详情
|
*/
|
private String detail;
|
|
/**
|
* 图片路径列表,逗号分隔
|
*/
|
private String photoPathList;
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
/**
|
* 用户评价
|
*/
|
private String evaluate;
|
|
/**
|
* 用户评价时间
|
*/
|
private Date evaluateAt;
|
|
/**
|
* 反馈时间
|
*/
|
private Date feedbackAt;
|
|
/**
|
* 完成情况图片列表,逗号分隔
|
*/
|
private String finishPhotoPathList;
|
|
/**
|
* 完成情况描述
|
*/
|
private String finish;
|
/**
|
* 完成时间=反馈时间
|
*/
|
private Date finishAt;
|
/**
|
* 驳回理由
|
*/
|
private String rejectReason;
|
|
/**
|
* 反馈文字
|
*/
|
private String feedback;
|
|
/**
|
* 反馈图片集合,逗号分隔
|
*/
|
private String feedbackPhotoPathList;
|
/**
|
* 目标集心数
|
*/
|
private Integer aimNum;
|
|
/**
|
* 单张图片宽度
|
*/
|
private BigDecimal imgWidth;
|
|
/**
|
* 单张图片高度
|
*/
|
private BigDecimal imgHeight;
|
|
/**
|
* 处理人id,多个以逗号隔开
|
*/
|
private String handleId;
|
|
/**
|
* 状态 1待审核 2待分配 3进行中 4已驳回 5待确认6 已完成 7集心中
|
*/
|
public interface status{
|
int dsh=1;
|
int dfp=2;
|
int jxz=3;
|
int ybh=4;
|
int dqr=5;
|
int ywc=6;
|
int jx=7;
|
}
|
|
}
|