fuliqi
2024-09-29 c4df5d2cfaa12a1c8a72ef25934fdc31d5be65a1
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
package com.ycl.platform.domain.query;
 
import com.ycl.platform.base.AbsQuery;
import enumeration.ContractStatus;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author:xp
 * @date:2024/7/23 9:40
 */
@Data
public class ContractQuery extends AbsQuery {
 
    @ApiModelProperty("合同名称")
    private String name;
 
    /**
     * @see ContractStatus
     */
    @ApiModelProperty("状态")
    private String status;
 
    private Integer unitId;
 
}