cjl
2023-09-27 57b29a43e4d1505d44e1ac82ed61ef640ba49e8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;
}