cca6b92a0797519ca45ea83d7d13affdd8e1a436.svn-base 4.4 KB

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