184 lines
3.3 KiB
Java
184 lines
3.3 KiB
Java
package com.ifish.entity;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Entity
|
|
@Table(name="tbl_device_user_attriname")
|
|
public class DeviceUserAttriName implements Serializable{
|
|
|
|
private static final long serialVersionUID = -5155435715428041950L;
|
|
/**
|
|
* ID
|
|
*/
|
|
@Id
|
|
@Column(name="id")
|
|
private Integer id;
|
|
@Column(name="user_id")
|
|
private Integer userId;
|
|
@Column(name="device_id")
|
|
private Integer deviceId;
|
|
|
|
@Column(name="switch_s1")
|
|
private String switchS1;
|
|
@Column(name="switch_s2")
|
|
private String switchS2;
|
|
@Column(name="switch_s3")
|
|
private String switchS3;
|
|
@Column(name="switch_s4")
|
|
private String switchS4;
|
|
@Column(name="switch_s5")
|
|
private String switchS5;
|
|
@Column(name="switch_s6")
|
|
private String switchS6;
|
|
@Column(name="switch_s7")
|
|
private String switchS7;
|
|
@Column(name="switch_s8")
|
|
private String switchS8;
|
|
@Column(name="switch_s9")
|
|
private String switchS9;
|
|
@Column(name="switch_s10")
|
|
private String switchS10;
|
|
@Column(name="switch_s11")
|
|
private String switchS11;
|
|
@Column(name="switch_s12")
|
|
private String switchS12;
|
|
@Column(name="create_time")
|
|
private Date createTime;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(Integer userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public Integer getDeviceId() {
|
|
return deviceId;
|
|
}
|
|
|
|
public void setDeviceId(Integer deviceId) {
|
|
this.deviceId = deviceId;
|
|
}
|
|
|
|
public String getSwitchS1() {
|
|
return switchS1;
|
|
}
|
|
|
|
public void setSwitchS1(String switchS1) {
|
|
this.switchS1 = switchS1;
|
|
}
|
|
|
|
public String getSwitchS2() {
|
|
return switchS2;
|
|
}
|
|
|
|
public void setSwitchS2(String switchS2) {
|
|
this.switchS2 = switchS2;
|
|
}
|
|
|
|
public String getSwitchS3() {
|
|
return switchS3;
|
|
}
|
|
|
|
public void setSwitchS3(String switchS3) {
|
|
this.switchS3 = switchS3;
|
|
}
|
|
|
|
public String getSwitchS4() {
|
|
return switchS4;
|
|
}
|
|
|
|
public void setSwitchS4(String switchS4) {
|
|
this.switchS4 = switchS4;
|
|
}
|
|
|
|
public String getSwitchS5() {
|
|
return switchS5;
|
|
}
|
|
|
|
public void setSwitchS5(String switchS5) {
|
|
this.switchS5 = switchS5;
|
|
}
|
|
|
|
public String getSwitchS6() {
|
|
return switchS6;
|
|
}
|
|
|
|
public void setSwitchS6(String switchS6) {
|
|
this.switchS6 = switchS6;
|
|
}
|
|
|
|
public String getSwitchS7() {
|
|
return switchS7;
|
|
}
|
|
|
|
public void setSwitchS7(String switchS7) {
|
|
this.switchS7 = switchS7;
|
|
}
|
|
|
|
public String getSwitchS8() {
|
|
return switchS8;
|
|
}
|
|
|
|
public void setSwitchS8(String switchS8) {
|
|
this.switchS8 = switchS8;
|
|
}
|
|
|
|
public String getSwitchS9() {
|
|
return switchS9;
|
|
}
|
|
|
|
public void setSwitchS9(String switchS9) {
|
|
this.switchS9 = switchS9;
|
|
}
|
|
|
|
public String getSwitchS10() {
|
|
return switchS10;
|
|
}
|
|
|
|
public void setSwitchS10(String switchS10) {
|
|
this.switchS10 = switchS10;
|
|
}
|
|
|
|
public String getSwitchS11() {
|
|
return switchS11;
|
|
}
|
|
|
|
public void setSwitchS11(String switchS11) {
|
|
this.switchS11 = switchS11;
|
|
}
|
|
|
|
public String getSwitchS12() {
|
|
return switchS12;
|
|
}
|
|
|
|
public void setSwitchS12(String switchS12) {
|
|
this.switchS12 = switchS12;
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
}
|