forked from gzzfw/backEnd/gz-dyh

zhouxiantao
2024-09-27 b0a34952a61975657bd3a2386fe38047c4e03723
dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/domain/po/CaseSupervise.java
@@ -6,6 +6,7 @@
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
@@ -42,6 +43,18 @@
    private String supContent;
    /**
     * 督办人编号
     */
    @TableField(value = "sup_unit_id")
    private String supUnitId;
    /**
     * 督办人名称
     */
    @TableField(value = "sup_unit_name")
    private String supUnitName;
    /**
    * 督办人编号
    */
    @TableField(value = "sup_user_id")
@@ -56,6 +69,7 @@
    /**
    * 督办时间
    */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    @TableField(value = "sup_time")
    private Date supTime;
@@ -104,8 +118,9 @@
    /**
    * 回复时间
    */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    @TableField(value = "reply_time")
    private String replyTime;
    private Date replyTime;
    /**
    * 删除状态,0:未删除,1:已删除
@@ -123,12 +138,14 @@
    /**
    * 创建时间
    */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    @TableField(value = "create_time")
    private Date createTime;
    /**
    * 更新时间
    */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    @TableField(value = "update_time")
    private Date updateTime;
@@ -143,4 +160,17 @@
     */
    @TableField(exist = false)
    private List<QuiltUnitDTO> quiltUnitDTOList;
    /**
     * 事项等级
     */
    @TableField(exist = false)
    private Integer caseGrade;
    /**
     * 回复时限
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
    @TableField(exist = false)
    private Date timeLimit;
}