zss
2025-03-11 eeb8d7faa8d25b3ca9fe75ef28f035c49af5b06d
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.ruoyi.requier.dto;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class DeviceConfigDtoPage {
 
    @ApiModelProperty(value = "设备名称")
    private String deviceName;
 
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    @ApiModelProperty(value = "文件后缀")
    private String fileType;
 
    @ApiModelProperty(value = "采集地址")
    private String collectUrl;
 
    @ApiModelProperty(value = "存储地址")
    private String storageUrl;
 
    @ApiModelProperty(value = "IP地址")
    private String ip;
 
    @ApiModelProperty(value = "检验项")
    private String inspectionItem;
 
    @ApiModelProperty(value = "检验项子项")
    private String inspectionItemSubclass;
 
    @ApiModelProperty(value = "公式")
    private String formula;
 
    @ApiModelProperty(value = "参照X")
    private String referx;
 
    @ApiModelProperty(value = "X")
    private String x;
 
    @ApiModelProperty(value = "参照Y")
    private String refery;
 
    @ApiModelProperty(value = "Y")
    private String y;
 
    private Integer id;
 
    @ApiModelProperty(value = "检验对象")
    private String sample;
 
    @ApiModelProperty(value = "检验项目id")
    private Integer structureItemParameterId;
 
    @ApiModelProperty("数采-委托字段")
    private String entrustCode;
 
    @ApiModelProperty("数采-样品字段")
    private String sampleCode;
 
    @ApiModelProperty("数采-db,mdb文件名称")
    private String dbFileName;
 
    @ApiModelProperty("数采-db文件 光纤带编号")
    private String fiberOpticRibbon;
}