songhuangfeng123
2022-08-18 2b4afe24e1136e4eb25e37b7a76565603ddc1a85
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
package com.gkhy.safePlatform.equipment.model.dto.req;
 
import com.gkhy.safePlatform.equipment.annotation.Query;
 
public class KeypointEquipmentInfoQueryCriteria {
    //名称
    @Query(type = Query.Type.INNER_LIKE)
    private String name;
    //名称
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
 
    //类型/类别外键
    @Query()
    private Integer equipmentTypeId;
 
    public Integer getEquipmentTypeId() {
        return equipmentTypeId;
    }
 
    public void setEquipmentTypeId(Integer equipmentTypeId) {
        this.equipmentTypeId = equipmentTypeId;
    }
}