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; } }