175 lines
3.5 KiB
Plaintext
175 lines
3.5 KiB
Plaintext
package th.co.muangthai.endrprint.model.bean.tmp;
|
|
|
|
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_tmp_data_print")
|
|
public class EndrTmpDataPrintBean implements Serializable {
|
|
|
|
@Id
|
|
@Column(name = "PROCESS_ID")
|
|
private String processId;
|
|
@Id
|
|
@Column(name = "TASK_ID")
|
|
private String taskId;
|
|
@Column(name = "USER_ID")
|
|
private String userId;
|
|
@Column(name = "SERVER_ID")
|
|
private BigDecimal serverId;
|
|
@Column(name = "DAT_JOB")
|
|
private String datJob;
|
|
@Column(name = "DAT_PRINTER")
|
|
private String datPrinter;
|
|
@Column(name = "DAT_TEAM")
|
|
private String datTeam;
|
|
@Column(name = "DAT_STATUS")
|
|
private String datStatus;
|
|
@Column(name = "DAT_OPERID")
|
|
private String datOperid;
|
|
@Column(name = "DAT_OPERNAME")
|
|
private String datOpername;
|
|
@Column(name = "DAT_CP_LOG")
|
|
private String datCpLog;
|
|
@Column(name = "CREATE_BY")
|
|
private String createBy;
|
|
@Column(name = "CREATE_DATE")
|
|
private Date createDate;
|
|
@Column(name = "UPDATE_BY")
|
|
private String updateBy;
|
|
@Column(name = "UPDATE_DATE")
|
|
private Date updateDate;
|
|
|
|
public void setProcessId(String processId) {
|
|
this.processId = processId;
|
|
}
|
|
|
|
public String getProcessId() {
|
|
return this.processId;
|
|
}
|
|
|
|
public void setTaskId(String taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
|
|
public String getTaskId() {
|
|
return this.taskId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public String getUserId() {
|
|
return this.userId;
|
|
}
|
|
|
|
public void setServerId(BigDecimal serverId) {
|
|
this.serverId = serverId;
|
|
}
|
|
|
|
public BigDecimal getServerId() {
|
|
return this.serverId;
|
|
}
|
|
|
|
public void setDatJob(String datJob) {
|
|
this.datJob = datJob;
|
|
}
|
|
|
|
public String getDatJob() {
|
|
return this.datJob;
|
|
}
|
|
|
|
public void setDatPrinter(String datPrinter) {
|
|
this.datPrinter = datPrinter;
|
|
}
|
|
|
|
public String getDatPrinter() {
|
|
return this.datPrinter;
|
|
}
|
|
|
|
public void setDatTeam(String datTeam) {
|
|
this.datTeam = datTeam;
|
|
}
|
|
|
|
public String getDatTeam() {
|
|
return this.datTeam;
|
|
}
|
|
|
|
public void setDatStatus(String datStatus) {
|
|
this.datStatus = datStatus;
|
|
}
|
|
|
|
public String getDatStatus() {
|
|
return this.datStatus;
|
|
}
|
|
|
|
public void setDatOperid(String datOperid) {
|
|
this.datOperid = datOperid;
|
|
}
|
|
|
|
public String getDatOperid() {
|
|
return this.datOperid;
|
|
}
|
|
|
|
public void setDatOpername(String datOpername) {
|
|
this.datOpername = datOpername;
|
|
}
|
|
|
|
public String getDatOpername() {
|
|
return this.datOpername;
|
|
}
|
|
|
|
public void setDatCpLog(String datCpLog) {
|
|
this.datCpLog = datCpLog;
|
|
}
|
|
|
|
public String getDatCpLog() {
|
|
return this.datCpLog;
|
|
}
|
|
|
|
public void setCreateBy(String createBy) {
|
|
this.createBy = createBy;
|
|
}
|
|
|
|
public String getCreateBy() {
|
|
return this.createBy;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
@JsonSerialize(using = JsonDateSerializer.class)
|
|
public Date getCreateDate() {
|
|
return this.createDate;
|
|
}
|
|
|
|
public void setUpdateBy(String updateBy) {
|
|
this.updateBy = updateBy;
|
|
}
|
|
|
|
public String getUpdateBy() {
|
|
return this.updateBy;
|
|
}
|
|
|
|
public void setUpdateDate(Date updateDate) {
|
|
this.updateDate = updateDate;
|
|
}
|
|
|
|
@JsonSerialize(using = JsonDateSerializer.class)
|
|
public Date getUpdateDate() {
|
|
return this.updateDate;
|
|
}
|
|
|
|
|
|
} |