17 lines
348 B
Java
17 lines
348 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmPrmNoticeDtlQVO extends BaseQueryVO implements Serializable {
|
|
String noticeId;
|
|
|
|
public String getNoticeId() {
|
|
return this.noticeId;
|
|
}
|
|
|
|
public void setNoticeId(String newNoticeId) {
|
|
this.noticeId = newNoticeId;
|
|
}
|
|
}
|