36 lines
775 B
Java
36 lines
775 B
Java
package wenrgise.hrms.bean;
|
|
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmSepClrTmplMstDtlBean extends BaseDetailBean {
|
|
private String txtClrDescId;
|
|
|
|
private String txtClrDesc;
|
|
|
|
private String disabtxtClrDesc;
|
|
|
|
public String getTxtClrDescId() {
|
|
return this.txtClrDescId;
|
|
}
|
|
|
|
public void setTxtClrDescId(String newTxtClrDescId) {
|
|
this.txtClrDescId = newTxtClrDescId;
|
|
}
|
|
|
|
public String getTxtClrDesc() {
|
|
return this.txtClrDesc;
|
|
}
|
|
|
|
public void setTxtClrDesc(String newTxtClrDesc) {
|
|
this.txtClrDesc = newTxtClrDesc;
|
|
}
|
|
|
|
public String getDisabtxtClrDesc() {
|
|
return this.disabtxtClrDesc;
|
|
}
|
|
|
|
public void setDisabtxtClrDesc(String newDisabtxtClrDesc) {
|
|
this.disabtxtClrDesc = newDisabtxtClrDesc;
|
|
}
|
|
}
|