songhuangfeng123
2022-08-10 56ba708b25e1834eeb6c0366945b2c1fbafcfbe5
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
package com.gkhy.safePlatform.equipment.model.dto.req;
 
import com.gkhy.safePlatform.equipment.annotation.Query;
 
public class EquipmentInfoQueryCriteria {
    //名称
    @Query(type = Query.Type.INNER_LIKE)
    private String qName;
    //位号
    @Query(type = Query.Type.INNER_LIKE)
    private String positionNum;
 
    //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施
    private Integer infoType;
 
    //类型/类别外键
    private Integer equipmentTypeId;
 
    public Integer getEquipmentTypeId() {
        return equipmentTypeId;
    }
 
    public void setEquipmentTypeId(Integer equipmentTypeId) {
        this.equipmentTypeId = equipmentTypeId;
    }
 
    public Integer getInfoType() {
        return infoType;
    }
 
    public void setInfoType(Integer infoType) {
        this.infoType = infoType;
    }
 
    public String getqName() {
        return qName;
    }
 
    public void setqName(String qName) {
        this.qName = qName;
    }
    //位号
    public String getPositionNum() {
        return positionNum;
    }
 
    public void setPositionNum(String positionNum) {
        this.positionNum = positionNum;
    }
}