f60b73aeba5ad93da246524659e389ac6c976ca8.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.alibaba.fastjson.annotation.JSONField;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. import io.swagger.annotations.ApiModelProperty;
  8. /**
  9. * entity:AttMampuInfo
  10. *
  11. * @author lhc
  12. * @date 2019-4-20
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class AttMampuInfo extends BaseBean implements Serializable {
  16. // 主键ID
  17. @ApiModelProperty(value = "主键ID", name = "id")
  18. private String id;
  19. // 名称
  20. @ApiModelProperty(value = "名称", name = "nm")
  21. private String nm;
  22. // 父ID
  23. @ApiModelProperty(value = "父ID", name = "pid")
  24. private String pid;
  25. // 父id名称dc/insp/rsvrRgstr
  26. @ApiModelProperty(value = "父id名称", name = "pidName")
  27. private String pidName;
  28. // 级别
  29. @ApiModelProperty(value = "级别", name = "lev")
  30. private String lev;
  31. // 顺序
  32. @ApiModelProperty(value = "顺序", name = "ord")
  33. private String ord;
  34. // 登记表ID
  35. @ApiModelProperty(value = "登记表ID", name = "regId")
  36. private String regId;
  37. // 记录人员ID
  38. @ApiModelProperty(value = "记录人员ID", name = "persId")
  39. private String persId;
  40. // 创建时间
  41. @ApiModelProperty(value = "创建时间", name = "intm")
  42. @JSONField(format = "yyyy-MM-dd")//数据库导出页面时json格式化
  43. private Date intm;
  44. // 修改时间
  45. @ApiModelProperty(value = "修改时间", name = "uptm")
  46. @JSONField(format = "yyyy-MM-dd HH:mm:ss")//数据库导出页面时json格式化
  47. private Date uptm;
  48. // 高德经度
  49. @ApiModelProperty(value = "高德经度", name = "lgtd")
  50. private Double lgtd;
  51. // 高德纬度
  52. @ApiModelProperty(value = "高德纬度", name = "lttd")
  53. private Double lttd;
  54. // PC经度
  55. @ApiModelProperty(value = "PC经度", name = "lgtdPc")
  56. private Double lgtdPc;
  57. // PC纬度
  58. @ApiModelProperty(value = "PC纬度", name = "lttdPc")
  59. private Double lttdPc;
  60. public AttMampuInfo() {
  61. }
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getNm() {
  69. return nm;
  70. }
  71. public void setNm(String nm) {
  72. this.nm = nm;
  73. }
  74. public String getPid() {
  75. return pid;
  76. }
  77. public void setPid(String pid) {
  78. this.pid = pid;
  79. }
  80. public String getPidName() {
  81. return pidName;
  82. }
  83. public void setPidName(String pidName) {
  84. this.pidName = pidName;
  85. }
  86. public String getLev() {
  87. return lev;
  88. }
  89. public void setLev(String lev) {
  90. this.lev = lev;
  91. }
  92. public String getOrd() {
  93. return ord;
  94. }
  95. public void setOrd(String ord) {
  96. this.ord = ord;
  97. }
  98. public String getRegId() {
  99. return regId;
  100. }
  101. public void setRegId(String regId) {
  102. this.regId = regId;
  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 Double getLgtd() {
  123. return lgtd;
  124. }
  125. public void setLgtd(Double lgtd) {
  126. this.lgtd = lgtd;
  127. }
  128. public Double getLttd() {
  129. return lttd;
  130. }
  131. public void setLttd(Double lttd) {
  132. this.lttd = lttd;
  133. }
  134. public Double getLgtdPc() {
  135. return lgtdPc;
  136. }
  137. public void setLgtdPc(Double lgtdPc) {
  138. this.lgtdPc = lgtdPc;
  139. }
  140. public Double getLttdPc() {
  141. return lttdPc;
  142. }
  143. public void setLttdPc(Double lttdPc) {
  144. this.lttdPc = lttdPc;
  145. }
  146. }