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