46 lines
947 B
Java
46 lines
947 B
Java
package wenrgise.hrms.bean;
|
|
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmSepClrEmpDtlBean extends BaseDetailBean {
|
|
private String txtClrDesc;
|
|
|
|
private String txtClrDescId;
|
|
|
|
private String txtCheckFlag;
|
|
|
|
private String txtComment;
|
|
|
|
public String getTxtClrDesc() {
|
|
return this.txtClrDesc;
|
|
}
|
|
|
|
public void setTxtClrDesc(String newTxtClrDesc) {
|
|
this.txtClrDesc = newTxtClrDesc;
|
|
}
|
|
|
|
public String getTxtClrDescId() {
|
|
return this.txtClrDescId;
|
|
}
|
|
|
|
public void setTxtClrDescId(String newTxtClrDescId) {
|
|
this.txtClrDescId = newTxtClrDescId;
|
|
}
|
|
|
|
public String getTxtCheckFlag() {
|
|
return this.txtCheckFlag;
|
|
}
|
|
|
|
public void setTxtCheckFlag(String newTxtCheckFlag) {
|
|
this.txtCheckFlag = newTxtCheckFlag;
|
|
}
|
|
|
|
public String getTxtComment() {
|
|
return this.txtComment;
|
|
}
|
|
|
|
public void setTxtComment(String newTxtComment) {
|
|
this.txtComment = newTxtComment;
|
|
}
|
|
}
|