72 lines
1.7 KiB
Plaintext
72 lines
1.7 KiB
Plaintext
|
package th.co.muangthai.endrprint.model.bean.master;
|
||
|
|
||
|
import javax.persistence.Column;
|
||
|
import javax.persistence.Entity;
|
||
|
import javax.persistence.Id;
|
||
|
import javax.persistence.Table;
|
||
|
import java.math.BigDecimal;
|
||
|
import java.util.Date;
|
||
|
import java.io.Serializable;
|
||
|
import org.codehaus.jackson.annotate.JsonAutoDetect;
|
||
|
import org.codehaus.jackson.map.annotate.JsonSerialize;
|
||
|
import th.co.muangthai.endrprint.util.JsonDateSerializer;
|
||
|
|
||
|
@JsonAutoDetect
|
||
|
@Entity
|
||
|
@Table(name = "endr_mst_path_txt_file")
|
||
|
public class EndrMstPathTxtFileBean implements Serializable {
|
||
|
|
||
|
@Id
|
||
|
@Column(name = "MST_PATH_TXT_FILE_ID")
|
||
|
private BigDecimal mstPathTxtFileId;
|
||
|
@Column(name = "PATH_FILE_PRO")
|
||
|
private String pathFilePro;
|
||
|
@Column(name = "PATH_FILE_UAT")
|
||
|
private String pathFileUat;
|
||
|
@Column(name = "PATH_FILE_DESC")
|
||
|
private String pathFileDesc;
|
||
|
@Column(name = "PATH_FILE_FLAG")
|
||
|
private BigDecimal pathFileFlag;
|
||
|
|
||
|
public void setMstPathTxtFileId(BigDecimal mstPathTxtFileId) {
|
||
|
this.mstPathTxtFileId = mstPathTxtFileId;
|
||
|
}
|
||
|
|
||
|
public BigDecimal getMstPathTxtFileId() {
|
||
|
return this.mstPathTxtFileId;
|
||
|
}
|
||
|
|
||
|
public void setPathFilePro(String pathFilePro) {
|
||
|
this.pathFilePro = pathFilePro;
|
||
|
}
|
||
|
|
||
|
public String getPathFilePro() {
|
||
|
return this.pathFilePro;
|
||
|
}
|
||
|
|
||
|
public void setPathFileUat(String pathFileUat) {
|
||
|
this.pathFileUat = pathFileUat;
|
||
|
}
|
||
|
|
||
|
public String getPathFileUat() {
|
||
|
return this.pathFileUat;
|
||
|
}
|
||
|
|
||
|
public void setPathFileDesc(String pathFileDesc) {
|
||
|
this.pathFileDesc = pathFileDesc;
|
||
|
}
|
||
|
|
||
|
public String getPathFileDesc() {
|
||
|
return this.pathFileDesc;
|
||
|
}
|
||
|
|
||
|
public void setPathFileFlag(BigDecimal pathFileFlag) {
|
||
|
this.pathFileFlag = pathFileFlag;
|
||
|
}
|
||
|
|
||
|
public BigDecimal getPathFileFlag() {
|
||
|
return this.pathFileFlag;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|