0d02cf22fe25e15bc1d139675975074dab7f5f4f.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 IndexPblmParam extends BaseBean implements Serializable {
  6. @ApiModelProperty(value = "结束时间")
  7. private String ettm;
  8. @ApiModelProperty("开始时间")
  9. private String sttm;
  10. @ApiModelProperty("所属机构,多个机构用逗号分隔")
  11. private String orgIds;
  12. @ApiModelProperty(value = "问题新增或累计状态", required = true)
  13. private String pblmState;
  14. @ApiModelProperty("字符串截取长度")
  15. private String length;
  16. @ApiModelProperty("剩余长度")
  17. private String otherLength;
  18. public String getLength() {
  19. return length;
  20. }
  21. public void setLength(String length) {
  22. this.length = length;
  23. }
  24. public String getOtherLength() {
  25. return otherLength;
  26. }
  27. public void setOtherLength(String otherLength) {
  28. this.otherLength = otherLength;
  29. }
  30. @ApiModelProperty("督查对象类型")
  31. private String type;
  32. @ApiModelProperty("行政区划")
  33. private String adCode;
  34. @ApiModelProperty(value = "日期类型,day,week,year",required = true)
  35. private String dtype;
  36. @ApiModelProperty("向前推的时间,做补0")
  37. private String seltime;
  38. @ApiModelProperty("简报引用:1为已经引用")
  39. private String quote;
  40. public String getQuote() {
  41. return quote;
  42. }
  43. public void setQuote(String quote) {
  44. this.quote = quote;
  45. }
  46. public String getEttm() {
  47. return ettm;
  48. }
  49. public void setEttm(String ettm) {
  50. this.ettm = ettm;
  51. }
  52. public String getSttm() {
  53. return sttm;
  54. }
  55. public void setSttm(String sttm) {
  56. this.sttm = sttm;
  57. }
  58. public String getOrgIds() {
  59. return orgIds;
  60. }
  61. public void setOrgIds(String orgIds) {
  62. this.orgIds = orgIds;
  63. }
  64. public String getType() {
  65. return type;
  66. }
  67. public void setType(String type) {
  68. this.type = type;
  69. }
  70. public String getAdCode() {
  71. return adCode;
  72. }
  73. public void setAdCode(String adCode) {
  74. this.adCode = adCode;
  75. }
  76. public String getPblmState() {
  77. return pblmState;
  78. }
  79. public void setPblmState(String pblmState) {
  80. this.pblmState = pblmState;
  81. }
  82. public String getDtype() {
  83. return dtype;
  84. }
  85. public void setDtype(String dtype) {
  86. this.dtype = dtype;
  87. }
  88. public String getSeltime() {
  89. return seltime;
  90. }
  91. public void setSeltime(String seltime) {
  92. this.seltime = seltime;
  93. }
  94. }