ELogSheetEvent.java
package com.mycim.valueobject.ems;
import java.io.Serializable;
import java.util.Date;
public class ELogSheetEvent implements Serializable {
public static final String SEASON_MODE_T = "T";
public static final String SEASON_MODE_F = "F";
private Long elogSheetRrn;
private String equipmentId;
private Long equipmentRrn;
private String equipmentGroupId;
private String chamberType;
private String lotId;
private Long lotRrn;
private Long stepSequence;
private String loyType;
private String actionType;
private Date processStartTime;
private Date processEndTime;
private String createUser;
private String updateUser;
private Date createTime;
private Date updateTime;
public Long getElogSheetRrn() {
return elogSheetRrn;
}
public void setElogSheetRrn(Long elogSheetRrn) {
this.elogSheetRrn = elogSheetRrn;
}
public Long getLotRrn() {
return lotRrn;
}
public void setLotRrn(Long lotRrn) {
this.lotRrn = lotRrn;
}
public Long getStepSequence() {
return stepSequence;
}
public void setStepSequence(Long stepSequence) {
this.stepSequence = stepSequence;
}
public String getActionType() {
return actionType;
}
public void setActionType(String actionType) {
this.actionType = actionType;
}
public Date getProcessStartTime() {
return processStartTime;
}
public void setProcessStartTime(Date processStartTime) {
this.processStartTime = processStartTime;
}
public Date getProcessEndTime() {
return processEndTime;
}
public void setProcessEndTime(Date processEndTime) {
this.processEndTime = processEndTime;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public String getUpdateUser() {
return updateUser;
}
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}