#
18516761980
2021-08-16 f25c800bca726b67ea74e6ed576b038b1b9561a7
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
package com.slcf.bean;
 
/**
 * 站点新增传参bean
 * @author admin
 * @date 2018年11月8日
 */
public class StationEntity {
    private int dev_no;
    private int e_dev_no;
    private String in_enable;
    private String out_enable;
 
    /**
     * @return the dev_no
     */
    public int getDev_no() {
        return dev_no;
    }
    /**
     * @param dev_no the dev_no to set
     */
    public void setDev_no(int dev_no) {
        this.dev_no = dev_no;
    }
    
    /**
     * @return the e_dev_no
     */
    public int getE_dev_no() {
        return e_dev_no;
    }
    /**
     * @param e_dev_no the e_dev_no to set
     */
    public void setE_dev_no(int e_dev_no) {
        this.e_dev_no = e_dev_no;
    }
    /**
     * @return the in_enable
     */
    public String getIn_enable() {
        return in_enable;
    }
    /**
     * @param in_enable the in_enable to set
     */
    public void setIn_enable(String in_enable) {
        this.in_enable = in_enable;
    }
    /**
     * @return the out_enable
     */
    public String getOut_enable() {
        return out_enable;
    }
    /**
     * @param out_enable the out_enable to set
     */
    public void setOut_enable(String out_enable) {
        this.out_enable = out_enable;
    }    
}