package com.moral.api.pojo.dto.allocation;
|
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
@Data
|
public class AllocationUnitDto {
|
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer allocationId;
|
|
/**
|
*交办单号
|
*/
|
private String allocationNum;
|
|
/**
|
* 自查or核查
|
*/
|
private String escalationType;
|
|
/**
|
* 上报时间
|
*/
|
private Date escalationTime;
|
|
/**
|
* 污染位置
|
*/
|
private String pollutePosition;
|
|
/**
|
* 责任单位名字
|
*/
|
private String unitName;
|
|
/**
|
* 污染分类名字
|
*/
|
private String polluteTypeName;
|
|
/**
|
* 整改类型名字
|
*/
|
private String changeTypeName;
|
|
|
|
/**
|
* 期限天数
|
*/
|
private Integer changeDay;
|
|
/**
|
* 上报单位名字
|
*/
|
private String escalationUnitName;
|
|
/**
|
* 上报人
|
*/
|
private String escalationName;
|
|
/**
|
* 排查方式id
|
*/
|
private String investigationTypeName;
|
|
/**
|
* 问题描述
|
*/
|
private String problemDescribe;
|
|
/**
|
* 是否整改
|
*/
|
private Integer isChange;
|
|
/**
|
* 整改反馈
|
*/
|
private String changeDescribe;
|
/**
|
* 整改人性名
|
*/
|
private String changeName;
|
|
/**
|
* 整改时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date changeTime;
|
|
/**
|
* 考核分值
|
*/
|
private Integer checkScore;
|
/**
|
* 考核理由
|
*/
|
private String checkDescribe;
|
/**
|
* 考核人
|
*/
|
private String checkName;
|
|
|
|
/**
|
* 考核时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date checkTime;
|
/**
|
* 状态 0 创建 1 整改 2
|
*/
|
private String state;
|
/**
|
* 是否删除
|
*/
|
private String isDel;
|
/**
|
* 是否作废
|
*/
|
private String isInvalid;
|
/**
|
* 作废理由
|
*/
|
private String invalidReason;
|
|
private Integer createId;
|
|
private String createName;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createTime;
|
|
private Integer updateId;
|
|
private String updateName;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date updateTime;
|
}
|