songhuangfeng123
2022-07-29 f4b7ba5ab9850b45e969ff5967b1214f708f1f70
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
71
72
73
74
package com.gkhy.safePlatform.equipment.model.dto.req;
 
import java.sql.Timestamp;
import com.gkhy.safePlatform.equipment.annotation.Query;
 
public class EquipmentTakecareStardardDetailQueryCriteria {
        
    @Query()
    private Long id;
    //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施  3:重点监管装置/设备    
    @Query()
    private Integer infoTpe;
    //设备ID/外键    
    @Query()
    private Long equipmentId;
    //文件路径    
    @Query()
    private String filePath;
    //创建日期    
    @Query()
    private Timestamp createTime;
    //更新日期    
    @Query()
    private Timestamp updateTime;
 
            
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施  3:重点监管装置/设备        
    public Integer getInfoTpe() {
        return infoTpe;
    }
 
    public void setInfoTpe(Integer infoTpe) {
        this.infoTpe = infoTpe;
    }
    //设备ID/外键        
    public Long getEquipmentId() {
        return equipmentId;
    }
 
    public void setEquipmentId(Long equipmentId) {
        this.equipmentId = equipmentId;
    }
    //文件路径        
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
    //创建日期        
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
    //更新日期        
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
}