package org.jeecg.modules.dnc.request;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
@Data
|
@NoArgsConstructor
|
@ApiModel(value = "文件查询参数", description = "文件查询参数")
|
public class DocFileQueryRequest {
|
@ApiModelProperty(value = "文档id", notes="文档id", example = "12344444", required = true)
|
private String docId;
|
//排序字段
|
@ApiModelProperty(value = "降序排列", notes="排序字段为数据库具体字段名,需要解析; 多个字段以英文逗号分隔")
|
private String descStr;
|
@ApiModelProperty(value = "升序排列", notes="排序字段为数据库具体字段名,需要解析; 多个字段以英文逗号分隔")
|
private String ascStr;
|
}
|