first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseHeaderBean;
public class HrmPrmNoticeDtlHdrBean extends BaseHeaderBean implements Serializable {
String noticeId;
String noticeNo;
String noticeDate;
String desc;
public String getNoticeId() {
return this.noticeId;
}
public void setNoticeId(String newNoticeId) {
this.noticeId = newNoticeId;
}
public String getNoticeNo() {
return this.noticeNo;
}
public void setNoticeNo(String newNoticeNo) {
this.noticeNo = newNoticeNo;
}
public String getNoticeDate() {
return this.noticeDate;
}
public void setNoticeDate(String newNoticeDate) {
this.noticeDate = newNoticeDate;
}
public String getDesc() {
return this.desc;
}
public void setDesc(String newDesc) {
this.desc = newDesc;
}
}