| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * RelRectNotOrgParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class RelRectNotOrgParam extends PageParam implements Serializable {
- private String guid;
- private String orgGuid;
- private String notOrgType;
- private Date fromDate;
- private Date toDate;
- public RelRectNotOrgParam() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getOrgGuid() {
- return orgGuid;
- }
- public void setOrgGuid(String orgGuid) {
- this.orgGuid = orgGuid;
- }
- public String getNotOrgType() {
- return notOrgType;
- }
- public void setNotOrgType(String notOrgType) {
- this.notOrgType = notOrgType;
- }
- public Date getFromDate() {
- return fromDate;
- }
- public void setFromDate(Date fromDate) {
- this.fromDate = fromDate;
- }
- public Date getToDate() {
- return toDate;
- }
- public void setToDate(Date toDate) {
- this.toDate = toDate;
- }
- }
|