4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
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;
    }
}