jinpengyong
2023-09-28 b62c0ac0e4fa36e233915256ac2f9e3875ff3144
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
package com.moral.api.pojo.query.allocationextension;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <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 AllocationExtensionListCond implements Serializable {
 
    @ApiModelProperty(value = "ID")
    private Integer id;
 
}