27 lines
616 B
Java
27 lines
616 B
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmSettleHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String advanceDescription;
|
|
|
|
String advCodeId;
|
|
|
|
public String getAdvanceDescription() {
|
|
return this.advanceDescription;
|
|
}
|
|
|
|
public void setAdvanceDescription(String newAdvanceDescription) {
|
|
this.advanceDescription = newAdvanceDescription;
|
|
}
|
|
|
|
public String getAdvCodeId() {
|
|
return this.advCodeId;
|
|
}
|
|
|
|
public void setAdvCodeId(String newAdvCodeId) {
|
|
this.advCodeId = newAdvCodeId;
|
|
}
|
|
}
|