07837d05b6e65bb1627d17038577ccc935fdb912.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.annotations.ApiParam;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * BisInspSelAreaParam
  10. *
  11. * @author litf
  12. * @date 2019-3-6
  13. */
  14. public class BisInspSelAreaParam extends PageParam implements Serializable {
  15. @ApiParam(name = "areaId", value = "主键ID")
  16. private String areaId;
  17. @ApiParam(name = "id", value = "节点id")
  18. private String id;
  19. @ApiParam(name = "adCode", value = "行政区划代码")
  20. private String adCode;
  21. @ApiParam(name = "adCodes", value = "多个行政区划代码")
  22. private String adCodes;
  23. @ApiParam(name = "adName", value = "行政区划名称")
  24. private String adName;
  25. @ApiParam(name = "objName", value = "督查名称")
  26. private String objName;
  27. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  28. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  29. private Date idtm;
  30. public BisInspSelAreaParam() {
  31. }
  32. public String getAdCodes() {
  33. return adCodes;
  34. }
  35. public void setAdCodes(String adCodes) {
  36. this.adCodes = adCodes;
  37. }
  38. public String getAreaId() {
  39. return areaId;
  40. }
  41. public void setAreaId(String areaId) {
  42. this.areaId = areaId;
  43. }
  44. public String getId() {
  45. return id;
  46. }
  47. public void setId(String id) {
  48. this.id = id;
  49. }
  50. public String getAdCode() {
  51. return adCode;
  52. }
  53. public void setAdCode(String adCode) {
  54. this.adCode = adCode;
  55. }
  56. public String getAdName() {
  57. return adName;
  58. }
  59. public void setAdName(String adName) {
  60. this.adName = adName;
  61. }
  62. public Date getIdtm() {
  63. return idtm;
  64. }
  65. public void setIdtm(Date idtm) {
  66. this.idtm = idtm;
  67. }
  68. public String getObjName() {
  69. return objName;
  70. }
  71. public void setObjName(String objName) {
  72. this.objName = objName;
  73. }
  74. }