xuxiuxi
2017-04-07 9710ad282ec977387a635e19b53433948f72539d
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
75
76
package cn.com.basic.face.discern.query.item;
 
 
public class PlaceQueryItem {
 
    // 公司主键
    private String companyId;
    // 设备主键
    private String placeId;
    // 公司名称
    private String companyName;
    // 设备地点
    private String placeLabel;
 
    /**
     * Get 公司主键
     */
    public String getCompanyId() {
        return companyId;
    }
    
    /**
     * Set 公司主键
     */
    public void setCompanyId(String companyId) {
        this.companyId = companyId;
    }
 
    /**
     * Get 设备主键
     */
    public String getPlaceId() {
        return placeId;
    }
    
    /**
     * Set 设备主键
     */
    public void setPlaceId(String placeId) {
        this.placeId = placeId;
    }
 
    /**
     * Get 公司名称
     */
    public String getCompanyName() {
        return companyName;
    }
    
    /**
     * Set 公司名称
     */
    public void setCompanyName(String companyName) {
        this.companyName = companyName;
    }
 
    /**
     * Get 设备地点
     */
    public String getPlaceLabel() {
        return placeLabel;
    }
    
    /**
     * Set 设备地点
     */
    public void setPlaceLabel(String placeLabel) {
        this.placeLabel = placeLabel;
    }
 
    public String toString() {
        return 
             ",公司主键 =" + companyId  +  ",设备主键 =" + placeId    +  ",公司名称 =" + companyName + 
             ",设备地点 =" + placeLabel;
    }
}