7408194fcb2a19825cf8028df463727adc65b0ce.svn-base 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * RelOrgInspTypeParam
  9. *
  10. * @author lhc
  11. * @date 2020-4-2
  12. */
  13. public class RelOrgInspTypeParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 机构ID
  19. @ApiParam(name = "机构ID")
  20. @ApiModelProperty(value = "机构ID", name = "orgId")
  21. private String orgId;
  22. // 督查类型编码
  23. @ApiParam(name = "督查类型编码")
  24. @ApiModelProperty(value = "督查类型编码", name = "inspType")
  25. private String inspType;
  26. // 督查类型名称
  27. @ApiParam(name = "督查类型名称")
  28. @ApiModelProperty(value = "督查类型名称", name = "inspName")
  29. private String inspName;
  30. // 创建时间
  31. @ApiParam(name = "创建时间")
  32. @ApiModelProperty(value = "创建时间", name = "intm")
  33. private Date intm;
  34. // 修改时间
  35. @ApiParam(name = "修改时间")
  36. @ApiModelProperty(value = "修改时间", name = "uptm")
  37. private Date uptm;
  38. public RelOrgInspTypeParam() {
  39. }
  40. public String getId() {
  41. return id;
  42. }
  43. public void setId(String id) {
  44. this.id = id;
  45. }
  46. @Override
  47. public String getOrgId() {
  48. return orgId;
  49. }
  50. @Override
  51. public void setOrgId(String orgId) {
  52. this.orgId = orgId;
  53. }
  54. public String getInspType() {
  55. return inspType;
  56. }
  57. public void setInspType(String inspType) {
  58. this.inspType = inspType;
  59. }
  60. public String getInspName() {
  61. return inspName;
  62. }
  63. public void setInspName(String inspName) {
  64. this.inspName = inspName;
  65. }
  66. public Date getIntm() {
  67. return intm;
  68. }
  69. public void setIntm(Date intm) {
  70. this.intm = intm;
  71. }
  72. public Date getUptm() {
  73. return uptm;
  74. }
  75. public void setUptm(Date uptm) {
  76. this.uptm = uptm;
  77. }
  78. }