cb3f5af7de4f4447170d5cabe59eb79170fca147.svn-base 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. public class IndexParam extends BaseBean implements Serializable {
  6. @ApiModelProperty("开始时间")
  7. private String startTime;
  8. @ApiModelProperty("结束时间")
  9. private String endTime;
  10. @ApiModelProperty("所属机构,多个机构用逗号分隔")
  11. private String orgIds;
  12. @ApiModelProperty("所选对象类型,多个类型用逗号分隔")
  13. private String pTypes;
  14. @Override
  15. public String getProvince() {
  16. return province;
  17. }
  18. @Override
  19. public void setProvince(String province) {
  20. this.province = province;
  21. }
  22. public String getLength() {
  23. return length;
  24. }
  25. public void setLength(String length) {
  26. this.length = length;
  27. }
  28. public String getOtherLength() {
  29. return otherLength;
  30. }
  31. public void setOtherLength(String otherLength) {
  32. this.otherLength = otherLength;
  33. }
  34. @ApiModelProperty("行政区划")
  35. private String adCode;
  36. @ApiModelProperty("是否引用:被引用简报问题传入值为:1")
  37. private String quote;
  38. @ApiModelProperty("督查状态")
  39. private String state;
  40. @ApiModelProperty(value = "作为数据标识,不需要传参",required = false)
  41. private String province;
  42. @ApiModelProperty("字符串截取长度")
  43. private String length;
  44. @ApiModelProperty("剩余长度")
  45. private String otherLength;
  46. public String getState() {
  47. return state;
  48. }
  49. public void setState(String state) {
  50. this.state = state;
  51. }
  52. public String getQuote() {
  53. return quote;
  54. }
  55. public void setQuote(String quote) {
  56. this.quote = quote;
  57. }
  58. public String getAdCode() {
  59. return adCode;
  60. }
  61. public void setAdCode(String adCode) {
  62. this.adCode = adCode;
  63. }
  64. public String getStartTime() {
  65. return startTime;
  66. }
  67. public void setStartTime(String startTime) {
  68. this.startTime = startTime;
  69. }
  70. public String getEndTime() {
  71. return endTime;
  72. }
  73. public void setEndTime(String endTime) {
  74. this.endTime = endTime;
  75. }
  76. public String getOrgIds() {
  77. return orgIds;
  78. }
  79. public void setOrgIds(String orgIds) {
  80. this.orgIds = orgIds;
  81. }
  82. public String getpTypes() {
  83. return pTypes;
  84. }
  85. public void setpTypes(String pTypes) {
  86. this.pTypes = pTypes;
  87. }
  88. }