| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 订单查询条件DTO |
| | |
| | | private Integer pageSize = 10; |
| | | |
| | | @ApiModelProperty("用户ID") |
| | | private Long userId; |
| | | private String userId; |
| | | |
| | | @ApiModelProperty("单位ID") |
| | | private Long unitId; |
| | | private String unitId; |
| | | |
| | | @ApiModelProperty("提供者ID") |
| | | private Long providerId; |
| | | private String providerId; |
| | | |
| | | @ApiModelProperty("订单状态") |
| | | private String orderStatus; |
| | |
| | | |
| | | @ApiModelProperty("排序方向(asc/desc)") |
| | | private String orderDirection = "desc"; |
| | | |
| | | @ApiModelProperty("行业领域ID") |
| | | private String industryId; |
| | | |
| | | @ApiModelProperty("单位工程ID") |
| | | private List<String> unitProjectId; |
| | | |
| | | @ApiModelProperty("单位工程一级ID") |
| | | private List<String> importantDistrictId; |
| | | |
| | | @ApiModelProperty("产品类型ID") |
| | | private String productTypeId; |
| | | |
| | | @ApiModelProperty("产品类型子级ID") |
| | | private String productSubTypeId; |
| | | //工作流类型 0 代办 1 已办 |
| | | private Integer workFlowType; |
| | | // 流程实例业务类型 |
| | | private String businessType; |
| | | // 部门id |
| | | private String departmentId; |
| | | } |