a131ac67613f6294850c4a8019023fcdc996a26a.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import io.swagger.annotations.ApiParam;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. /**
  10. * PersPositionViewLogParam
  11. *
  12. * @author lhc
  13. * @date 2023年4月3日
  14. */
  15. public class PersPositionViewLogParam extends PageParam implements Serializable {
  16. // 主键ID
  17. @ApiParam(name = "主键ID")
  18. @ApiModelProperty(value = "主键ID", name = "id")
  19. private String id;
  20. // 所属机构ID
  21. @ApiParam(name = "所属机构ID")
  22. @ApiModelProperty(value = "所属机构ID", name = "orgId")
  23. private String orgId;
  24. // 所属行政区划编码
  25. @ApiParam(name = "所属行政区划编码")
  26. @ApiModelProperty(value = "所属行政区划编码", name = "adCode")
  27. private String adCode;
  28. // 所属行政区划编码
  29. @ApiModelProperty(value="所属行政区划名称",name="AD_NAME")
  30. private String adName;
  31. // 被查看人员ID
  32. @ApiParam(name = "被查看人员ID")
  33. @ApiModelProperty(value = "被查看人员ID", name = "persIdViewed")
  34. private String persIdViewed;
  35. // 被查看人员姓名
  36. @ApiParam(name = "被查看人员姓名")
  37. @ApiModelProperty(value = "被查看人员姓名", name = "persNameViewed")
  38. private String persNameViewed;
  39. // 查看人姓名
  40. @ApiParam(name = "查看人姓名")
  41. @ApiModelProperty(value = "查看人姓名", name = "persName")
  42. private String persName;
  43. // 查看(记录)人ID
  44. @ApiParam(name = "查看(记录)人ID")
  45. @ApiModelProperty(value = "查看(记录)人ID", name = "persId")
  46. private String persId;
  47. // 查看(创建)时间
  48. @ApiParam(name = "查看(创建)时间")
  49. @ApiModelProperty(value = "查看(创建)时间", name = "intm")
  50. @DateTimeFormat(pattern = "yyyy-MM-dd")
  51. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  52. private Date intm;
  53. // 最后修改时间
  54. @ApiParam(name = "最后修改时间")
  55. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  56. @DateTimeFormat(pattern = "yyyy-MM-dd")
  57. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  58. private Date uptm;
  59. // 备注
  60. @ApiParam(name = "备注")
  61. @ApiModelProperty(value = "备注", name = "note")
  62. private String note;
  63. // 数据状态
  64. @ApiParam(name = "数据状态")
  65. @ApiModelProperty(value = "数据状态", name = "dataStat")
  66. private String dataStat;
  67. @ApiParam(name = "开始时间")
  68. @ApiModelProperty(value = "开始时间")
  69. private String sttm;
  70. @ApiParam(name = "结束时间")
  71. @ApiModelProperty(value = "结束时间")
  72. private String entm;
  73. public PersPositionViewLogParam() {
  74. }
  75. public String getId() {
  76. return id;
  77. }
  78. public void setId(String id) {
  79. this.id = id;
  80. }
  81. @Override
  82. public String getOrgId() {
  83. return orgId;
  84. }
  85. @Override
  86. public void setOrgId(String orgId) {
  87. this.orgId = orgId;
  88. }
  89. public String getAdCode() {
  90. return adCode;
  91. }
  92. public void setAdCode(String adCode) {
  93. this.adCode = adCode;
  94. }
  95. public String getAdName() {
  96. return adName;
  97. }
  98. public void setAdName(String adName) {
  99. this.adName = adName;
  100. }
  101. public String getPersIdViewed() {
  102. return persIdViewed;
  103. }
  104. public void setPersIdViewed(String persIdViewed) {
  105. this.persIdViewed = persIdViewed;
  106. }
  107. public String getPersNameViewed() {
  108. return persNameViewed;
  109. }
  110. public void setPersNameViewed(String persNameViewed) {
  111. this.persNameViewed = persNameViewed;
  112. }
  113. public String getPersName() {
  114. return persName;
  115. }
  116. public void setPersName(String persName) {
  117. this.persName = persName;
  118. }
  119. public String getPersId() {
  120. return persId;
  121. }
  122. public void setPersId(String persId) {
  123. this.persId = persId;
  124. }
  125. public Date getIntm() {
  126. return intm;
  127. }
  128. public void setIntm(Date intm) {
  129. this.intm = intm;
  130. }
  131. public Date getUptm() {
  132. return uptm;
  133. }
  134. public void setUptm(Date uptm) {
  135. this.uptm = uptm;
  136. }
  137. public String getNote() {
  138. return note;
  139. }
  140. public void setNote(String note) {
  141. this.note = note;
  142. }
  143. public String getDataStat() {
  144. return dataStat;
  145. }
  146. public void setDataStat(String dataStat) {
  147. this.dataStat = dataStat;
  148. }
  149. public String getSttm() {
  150. return sttm;
  151. }
  152. public void setSttm(String sttm) {
  153. this.sttm = sttm;
  154. }
  155. public String getEntm() {
  156. return entm;
  157. }
  158. public void setEntm(String entm) {
  159. this.entm = entm;
  160. }
  161. }