01a01b5bc1e96601bd4deac004d21d9def82fd77.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. package cn.com.goldenwater.dcproj.param;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import io.swagger.annotations.ApiParam;
  8. import org.apache.commons.lang3.builder.ToStringBuilder;
  9. import org.apache.commons.lang3.builder.ToStringStyle;
  10. /**
  11. * 反馈问题过程记录对象 gw_pblm_rect_record
  12. *
  13. * @author ruoyi
  14. * @date 2023-04-18
  15. */
  16. public class GwPblmRectRecordParam extends BaseBean implements Serializable
  17. {
  18. private static final long serialVersionUID = 1L;
  19. @ApiModelProperty("ID")
  20. private String id;
  21. @ApiModelProperty("问题反馈ID")
  22. private String pblmId;
  23. @ApiModelProperty("反馈内容")
  24. private String pblmRectNote;
  25. @ApiModelProperty("反馈单位")
  26. private String pblmRectDuty;
  27. @ApiModelProperty("反馈人姓名")
  28. private String pblmRectName;
  29. @JsonFormat(pattern = "yyyy-MM-dd")
  30. @ApiModelProperty("反馈时间")
  31. private Date pblmRectTm;
  32. @ApiParam(
  33. name = "pageNum",
  34. value = "页码",
  35. defaultValue = "1"
  36. )
  37. private int pageNum = 1;
  38. @ApiParam(
  39. name = "pageSize",
  40. value = "每页记录数",
  41. defaultValue = "10"
  42. )
  43. private int pageSize = 10;
  44. @ApiParam(
  45. name = "orderBy",
  46. value = "排序语句(例如:id desc, create_time desc)"
  47. )
  48. private String orderBy;
  49. @ApiParam(
  50. name = "count",
  51. value = "是否查询总数(默认不)",
  52. defaultValue = "false"
  53. )
  54. private boolean count = false;
  55. @ApiParam(
  56. name = "offset",
  57. value = "偏移量:上页最后一条记录标识"
  58. )
  59. private String offset;
  60. public void setId(String id)
  61. {
  62. this.id = id;
  63. }
  64. public String getId()
  65. {
  66. return id;
  67. }
  68. public void setPblmId(String pblmId)
  69. {
  70. this.pblmId = pblmId;
  71. }
  72. public String getPblmId()
  73. {
  74. return pblmId;
  75. }
  76. public void setPblmRectNote(String pblmRectNote)
  77. {
  78. this.pblmRectNote = pblmRectNote;
  79. }
  80. public String getPblmRectNote()
  81. {
  82. return pblmRectNote;
  83. }
  84. public void setPblmRectDuty(String pblmRectDuty)
  85. {
  86. this.pblmRectDuty = pblmRectDuty;
  87. }
  88. public String getPblmRectDuty()
  89. {
  90. return pblmRectDuty;
  91. }
  92. public void setPblmRectName(String pblmRectName)
  93. {
  94. this.pblmRectName = pblmRectName;
  95. }
  96. public String getPblmRectName()
  97. {
  98. return pblmRectName;
  99. }
  100. public void setPblmRectTm(Date pblmRectTm)
  101. {
  102. this.pblmRectTm = pblmRectTm;
  103. }
  104. public Date getPblmRectTm()
  105. {
  106. return pblmRectTm;
  107. }
  108. public int getPageNum() {
  109. return pageNum;
  110. }
  111. public void setPageNum(int pageNum) {
  112. this.pageNum = pageNum;
  113. }
  114. public int getPageSize() {
  115. return pageSize;
  116. }
  117. public void setPageSize(int pageSize) {
  118. this.pageSize = pageSize;
  119. }
  120. public String getOrderBy() {
  121. return orderBy;
  122. }
  123. public void setOrderBy(String orderBy) {
  124. this.orderBy = orderBy;
  125. }
  126. public boolean isCount() {
  127. return count;
  128. }
  129. public void setCount(boolean count) {
  130. this.count = count;
  131. }
  132. public String getOffset() {
  133. return offset;
  134. }
  135. public void setOffset(String offset) {
  136. this.offset = offset;
  137. }
  138. @Override
  139. public String toString() {
  140. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  141. .append("id", getId())
  142. .append("pblmId", getPblmId())
  143. .append("pblmRectNote", getPblmRectNote())
  144. .append("pblmRectDuty", getPblmRectDuty())
  145. .append("pblmRectName", getPblmRectName())
  146. .append("pblmRectTm", getPblmRectTm())
  147. .toString();
  148. }
  149. }