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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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= SopFile.TABLE_NAME)
@DynamicUpdate
public class SopFile extends BaseEntity {
    private static final long serialVersionUID = 4625660507007894370L;
    public static final String TABLE_NAME = "SOP_FILE";
 
    private String bsName;
 
    private String bsFileName;
 
    private String bsUrl;
 
    private String bsAccount;
 
    private String bsPassword;
 
    private String bsPath;
 
    private String bsRoot;
 
    public String getBsName() {
        return bsName;
    }
 
    public void setBsName(String bsName) {
        this.bsName = bsName;
    }
 
    public String getBsFileName() {
        return bsFileName;
    }
 
    public void setBsFileName(String bsFileName) {
        this.bsFileName = bsFileName;
    }
 
    public String getBsUrl() {
        return bsUrl;
    }
 
    public void setBsUrl(String bsUrl) {
        this.bsUrl = bsUrl;
    }
 
    public String getBsAccount() {
        return bsAccount;
    }
 
    public void setBsAccount(String bsAccount) {
        this.bsAccount = bsAccount;
    }
 
    public String getBsPassword() {
        return bsPassword;
    }
 
    public void setBsPassword(String bsPassword) {
        this.bsPassword = bsPassword;
    }
 
    public String getBsPath() {
        return bsPath;
    }
 
    public void setBsPath(String bsPath) {
        this.bsPath = bsPath;
    }
 
    public String getBsRoot() {
        return bsRoot;
    }
 
    public void setBsRoot(String bsRoot) {
        this.bsRoot = bsRoot;
    }
}