package com.web.jhsop.websocket.entity;
|
|
|
import com.app.base.entity.BaseEntity;
|
import org.hibernate.annotations.DynamicUpdate;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name= SopDevice.TABLE_NAME)
|
@DynamicUpdate
|
public class SopDevice extends BaseEntity {
|
private static final long serialVersionUID = 4625660507007894370L;
|
public static final String TABLE_NAME = "SOP_DEVICE";
|
|
private String bsDevice;
|
|
private String bsName;
|
|
public String getBsDevice() {
|
return bsDevice;
|
}
|
|
public void setBsDevice(String bsDevice) {
|
this.bsDevice = bsDevice;
|
}
|
|
public String getBsName() {
|
return bsName;
|
}
|
|
public void setBsName(String bsName) {
|
this.bsName = bsName;
|
}
|
}
|