2e74a54a00d6f8c57b0f1d39193bf8f0c3ee5dfe.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. * FeedbackParam
  9. *
  10. * @author lhc
  11. * @date 2020-7-15
  12. */
  13. public class FeedbackParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他
  19. @ApiParam(name = "意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他")
  20. @ApiModelProperty(value = "意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他", name = "ptype")
  21. private String ptype;
  22. // 具体描述
  23. @ApiParam(name = "具体描述")
  24. @ApiModelProperty(value = "具体描述", name = "detail")
  25. private String detail;
  26. // 录入姓名
  27. @ApiParam(name = "录入姓名")
  28. @ApiModelProperty(value = "录入姓名", name = "uname")
  29. private String uname;
  30. // 联系人电话
  31. @ApiParam(name = "联系人电话")
  32. @ApiModelProperty(value = "联系人电话", name = "phone")
  33. private String phone;
  34. // 备注
  35. @ApiParam(name = "备注")
  36. @ApiModelProperty(value = "备注", name = "remark")
  37. private String remark;
  38. // 处理状态 0 未处理 1 已处理
  39. @ApiParam(name = "处理状态 0 未处理 1 已处理")
  40. @ApiModelProperty(value = "处理状态 0 未处理 1 已处理", name = "state")
  41. private String state;
  42. // 插入时间
  43. @ApiParam(name = "插入时间")
  44. @ApiModelProperty(value = "插入时间", name = "intm")
  45. private Date intm;
  46. // 更新时间
  47. @ApiParam(name = "更新时间")
  48. @ApiModelProperty(value = "更新时间", name = "uptm")
  49. private Date uptm;
  50. // 数据状态(0:正常;9:删除)
  51. @ApiParam(name = "数据状态(0:正常;9:删除)")
  52. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  53. private String dataStat;
  54. public FeedbackParam() {
  55. }
  56. public String getId() {
  57. return id;
  58. }
  59. public void setId(String id) {
  60. this.id = id;
  61. }
  62. public String getPtype() {
  63. return ptype;
  64. }
  65. public void setPtype(String ptype) {
  66. this.ptype = ptype;
  67. }
  68. public String getDetail() {
  69. return detail;
  70. }
  71. public void setDetail(String detail) {
  72. this.detail = detail;
  73. }
  74. public String getUname() {
  75. return uname;
  76. }
  77. public void setUname(String uname) {
  78. this.uname = uname;
  79. }
  80. public String getPhone() {
  81. return phone;
  82. }
  83. public void setPhone(String phone) {
  84. this.phone = phone;
  85. }
  86. public String getRemark() {
  87. return remark;
  88. }
  89. public void setRemark(String remark) {
  90. this.remark = remark;
  91. }
  92. public String getState() {
  93. return state;
  94. }
  95. public void setState(String state) {
  96. this.state = state;
  97. }
  98. public Date getIntm() {
  99. return intm;
  100. }
  101. public void setIntm(Date intm) {
  102. this.intm = intm;
  103. }
  104. public Date getUptm() {
  105. return uptm;
  106. }
  107. public void setUptm(Date uptm) {
  108. this.uptm = uptm;
  109. }
  110. public String getDataStat() {
  111. return dataStat;
  112. }
  113. public void setDataStat(String dataStat) {
  114. this.dataStat = dataStat;
  115. }
  116. }