| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * RelOrgInspTypeParam
- *
- * @author lhc
- * @date 2020-4-2
- */
- public class RelOrgInspTypeParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 机构ID
- @ApiParam(name = "机构ID")
- @ApiModelProperty(value = "机构ID", name = "orgId")
- private String orgId;
- // 督查类型编码
- @ApiParam(name = "督查类型编码")
- @ApiModelProperty(value = "督查类型编码", name = "inspType")
- private String inspType;
- // 督查类型名称
- @ApiParam(name = "督查类型名称")
- @ApiModelProperty(value = "督查类型名称", name = "inspName")
- private String inspName;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- public RelOrgInspTypeParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getInspType() {
- return inspType;
- }
- public void setInspType(String inspType) {
- this.inspType = inspType;
- }
- public String getInspName() {
- return inspName;
- }
- public void setInspName(String inspName) {
- this.inspName = inspName;
- }
- 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;
- }
- }
|