| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- 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;
- /**
- * ReaInspOrgParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class ReaInspOrgParam extends PageParam implements Serializable {
- private String guid;
- private String schmId;
- private Date intm;
- private Date uptm;
- public ReaInspOrgParam() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getSchmId() {
- return schmId;
- }
- public void setSchmId(String schmId) {
- this.schmId = schmId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- }
|