| | |
| | | package com.moral.api.pojo.vo.allocationextension; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.moral.api.pojo.ext.allocationextension.AllocationExtensionExt; |
| | | import com.moral.api.pojo.vo.file.FileVo; |
| | | import com.moral.api.utils.BeanConverts; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @ApiModelProperty(value = "主键id") |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "交办单id") |
| | | private Integer allocationId; |
| | | @ApiModelProperty(value = "交办单号") |
| | | private String allocationNum; |
| | | |
| | | |
| | | @ApiModelProperty(value = "上报时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd") |
| | | private Date escalationTime; |
| | | |
| | | |
| | | @ApiModelProperty(value = "污染位置") |
| | | private String pollutePosition; |
| | | |
| | | @ApiModelProperty(value = "责任单位id") |
| | | private Integer unitId; |
| | | |
| | | @ApiModelProperty(value = "污染分类id") |
| | | private Integer polluteType; |
| | | |
| | | @ApiModelProperty(value = "整改类型id") |
| | | private Integer changeType; |
| | | |
| | | @ApiModelProperty(value = "期限天数") |
| | | private Integer changeDay; |
| | | |
| | | @ApiModelProperty(value = "上报单位id") |
| | | private Integer escalationUnitId; |
| | | |
| | | @ApiModelProperty(value = "上报人") |
| | | private String escalationName; |
| | | |
| | | @ApiModelProperty(value = "排查方式id") |
| | | private Integer investigationType; |
| | | |
| | | @ApiModelProperty(value = "问题描述") |
| | | private String problemDescribe; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "基础附件") |
| | | private List<FileVo> fileBaseList; |
| | | |
| | | @ApiModelProperty(value = "延期附件") |
| | | private List<FileVo> fileList; |
| | | |
| | | |
| | | @ApiModelProperty(value = "延期天数") |
| | | private Integer extensionNum; |
| | |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | private Integer state; |
| | | |
| | | @ApiModelProperty(value = "是否删除") |
| | | private Integer isDel; |
| | | |
| | | @ApiModelProperty(value = "是否作废") |
| | | private Integer isInvalid; |
| | |
| | | private String createName; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty(value = "更新人id") |
| | |
| | | private String updateName; |
| | | |
| | | @ApiModelProperty(value = "更新时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone = "GMT+8") |
| | | private Date updateTime; |
| | | |
| | | |