17 lines
392 B
Java
17 lines
392 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmRoasterEntryQVO extends BaseQueryVO implements Serializable {
|
|
private String txtRoasterCode;
|
|
|
|
public String getTxtRoasterCode() {
|
|
return this.txtRoasterCode;
|
|
}
|
|
|
|
public void setTxtRoasterCode(String txtRoasterCode) {
|
|
this.txtRoasterCode = txtRoasterCode;
|
|
}
|
|
}
|