lyh
2025-01-13 137d008bd9b7d932160436a3a560b24512f6d1db
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
27
28
29
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 DocInfoQueryRequest {
    @ApiModelProperty(value = "绑定类型 1 产品 2 部件 3 零件 4 设备 5 工序", example = "1", required = true)
    private Integer attributionType;
    @ApiModelProperty(value = "绑定类型对应的id 1 产品id 2 部件id 3 零件id 4 设备id 5 工序id", example = "234324234",  required = true)
    private String attributionId;
    @ApiModelProperty(value = "文档分类 NC=NC文档 OTHER=其他文档 SEND=设备发送文档 REC=设备接受文档", example = "NC", required = true)
    private String docClassCode;
    //排序字段
    @ApiModelProperty(value = "降序排列 排序字段为数据库具体字段名,需要解析; 多个字段以英文逗号分隔")
    private String descStr;
    @ApiModelProperty(value = "升序排列 排序字段为数据库具体字段名,需要解析; 多个字段以英文逗号分隔")
    private String ascStr;
    @ApiModelProperty(value = "NC文件名称")
    private String docName;
    @ApiModelProperty(value = "上传时间开始")
    private String startTime;
    @ApiModelProperty(value = "上传时间结束")
    private String endTime;
}