| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "合同分页列表查询Query") |
| | | public class TContractQuery extends BasePage { |
| | |
| | | @ApiModelProperty(value = "合同编号") |
| | | private String contractNumber; |
| | | @ApiModelProperty(value = "合同名称") |
| | | private Integer contractName; |
| | | @ApiModelProperty(value = "合同状态 1=待提交 2=待审批 3=未签订 4=已签订") |
| | | private String contractName; |
| | | @ApiModelProperty(value = "合同状态 1=待提交 2=待审批 3=未签订 4=已签订 5=已驳回 6=已终止 7=待结算 8=已结算") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "选中的行") |
| | | private List<String> ids; |
| | | @NotBlank(message = "租户id不可为空") |
| | | @ApiModelProperty(value = "租户id") |
| | | private String tenantId; |
| | | @ApiModelProperty(value = "查询多个状态") |
| | | private List<Integer> statuses; |
| | | |
| | | @ApiModelProperty(value = "营运部门ID") |
| | | private String businessDeptId; |
| | | |
| | | } |