a8063e9e345f91ba7eaaa9167a4c128f4661c022.svn-base 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. public class GetVillPageByNodeIdParam extends PageParam implements Serializable {
  7. @ApiModelProperty(value = "节点id,必填", notes = "节点id", required = true)
  8. private String nodeId;
  9. // @ApiModelProperty(value = "登记表id",notes = "engId")
  10. // private String engId;
  11. @ApiModelProperty(value = "行政区名称", notes = "行政区名称")
  12. private String adNm;
  13. @ApiModelProperty(value = "检查单位id", notes = "检查单位")
  14. private String chkComId;
  15. @ApiModelProperty(value = "所在组id", notes = "所在组")
  16. private String groupId;
  17. @ApiModelProperty(value = "开始时间yyyy-MM-dd", notes = "开始时间")
  18. private String startDate;
  19. @ApiModelProperty(value = "结束时间yyyy-MM-dd", notes = "结束时间")
  20. private String endDate;
  21. public String getNodeId() {
  22. return nodeId;
  23. }
  24. public void setNodeId(String nodeId) {
  25. this.nodeId = nodeId;
  26. }
  27. // public String getEngId() {
  28. // return engId;
  29. // }
  30. //
  31. // public void setEngId(String engId) {
  32. // this.engId = engId;
  33. // }
  34. public String getAdNm() {
  35. return adNm;
  36. }
  37. public void setAdNm(String adNm) {
  38. this.adNm = adNm;
  39. }
  40. public String getChkComId() {
  41. return chkComId;
  42. }
  43. public void setChkComId(String chkComId) {
  44. this.chkComId = chkComId;
  45. }
  46. public String getGroupId() {
  47. return groupId;
  48. }
  49. public void setGroupId(String groupId) {
  50. this.groupId = groupId;
  51. }
  52. public String getStartDate() {
  53. return startDate;
  54. }
  55. public void setStartDate(String startDate) {
  56. this.startDate = startDate;
  57. }
  58. public String getEndDate() {
  59. return endDate;
  60. }
  61. public void setEndDate(String endDate) {
  62. this.endDate = endDate;
  63. }
  64. }