package com.moral.api.pojo.ext.allocationextension;
|
|
import com.moral.api.entity.AllocationExtension;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 交办单延期
|
* </p>
|
* deyt template generate
|
* @author JI
|
* @since 2023-09-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
public class AllocationExtensionPageExt extends AllocationExtension {
|
|
@ApiModelProperty(value = "交办单号")
|
private String allocationNum;
|
|
@ApiModelProperty(value = "上报时间")
|
private Date escalationTime;
|
@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;
|
|
private Integer isApprove;
|
}
|