lyh
2025-02-25 ed9f1d757d6d3486dd69a726454eb69c3c9bc538
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jeecg.modules.flow.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
 
@Data
@NoArgsConstructor
@ApiModel(value = "已办任务查询条件", description = "已办任务查询")
public class AssignFileStreamQueryRequest {
    //排序字段
    @ApiModelProperty(value = "降序排列", notes="排序字段为数据库具体字段名,需要解析; 多个字段以英文逗号分隔")
    private String descStr;
    @ApiModelProperty(value = "升序排列", notes="排序字段为数据库具体字段名,需要解析; 多个字段以英文逗号分隔")
    private String ascStr;
}