cjl
2023-09-26 9ff80d30c433c274dac4a2d07bbbbb7ec3cc6122
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.moral.api.pojo.query.allocationextension;
 
import com.moral.api.entity.AllocationExtension;
import com.moral.api.utils.BeanConverts;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 交办单延期
 * </p>
 * deyt template generate
 * @author JI
 * @since 2023-09-25
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="AllocationExtension - 更新对象", description="AllocationExtension - 更新对象")
public class AllocationExtensionUpdateCond implements Serializable {
 
    @ApiModelProperty(value = "主键id")
    private Integer id;
 
    @ApiModelProperty(value = "交办单id")
    private Integer allocationId;
 
    @ApiModelProperty(value = "延期天数")
    private Integer extensionNum;
 
    @ApiModelProperty(value = "延期理由")
    private String remake;
 
    @ApiModelProperty(value = "状态")
    private Integer state;
 
    @ApiModelProperty(value = "是否删除")
    private Integer isDel;
 
    @ApiModelProperty(value = "是否作废")
    private Integer isInvalid;
 
    @ApiModelProperty(value = "作废理由")
    private String invalidReason;
 
    @ApiModelProperty(value = "创建人id")
    private Integer createId;
 
    @ApiModelProperty(value = "创建人姓名")
    private String createName;
 
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
 
    @ApiModelProperty(value = "更新人id")
    private Integer updateId;
 
    @ApiModelProperty(value = "更新人姓名")
    private String updateName;
 
    @ApiModelProperty(value = "更新时间")
    private Date updateTime;
 
 
 
    public AllocationExtension convert() {
        AllocationExtension allocationExtension = BeanConverts.convert(this, AllocationExtension.class);
        return allocationExtension;
    }
}