73d740bc3c82291579996c16932b5f8fadba05d0.svn-base 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspKeyRegSecUnit
  9. *
  10. * @author lhc
  11. * @date 2019-4-20
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspKeyRegSecUnit extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 标段ID
  19. @ApiModelProperty(value = "标段ID", name = "secId")
  20. private String secId;
  21. // 单位名称
  22. @ApiModelProperty(value = "单位名称", name = "nm")
  23. private String nm;
  24. // 单位性质
  25. @ApiModelProperty(value = "单位性质 1:项目法人(建设单位) 2:勘察设计单位 3:监理单位 4:施工单位 5:金属结构及机电设备安装单位 6:安全监测单位 7:质量检测单位 9:其他", name = "nature")
  26. private String nature;
  27. // 监管模式
  28. @ApiModelProperty(value = "监管模式 1:直管 2:代建", name = "government")
  29. private String government;
  30. // 记录人员ID
  31. @ApiModelProperty(value = "记录人员ID", name = "persId")
  32. private String persId;
  33. // 创建时间
  34. @ApiModelProperty(value = "创建时间", name = "intm")
  35. private Date intm;
  36. // 最后修改时间
  37. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  38. private Date uptm;
  39. @ApiModelProperty("任务对象id")
  40. private String objId;
  41. @ApiModelProperty(value = "高德经度", name = "lgtd")
  42. private Double lgtd;
  43. // 高德纬度
  44. @ApiModelProperty(value = "高德纬度", name = "lttd")
  45. private Double lttd;
  46. private String unitName;
  47. public String getUnitName() {
  48. return unitName;
  49. }
  50. public void setUnitName(String unitName) {
  51. this.unitName = unitName;
  52. }
  53. public Double getLgtd() {
  54. return lgtd;
  55. }
  56. public void setLgtd(Double lgtd) {
  57. this.lgtd = lgtd;
  58. }
  59. public Double getLttd() {
  60. return lttd;
  61. }
  62. public void setLttd(Double lttd) {
  63. this.lttd = lttd;
  64. }
  65. @Override
  66. public String getObjId() {
  67. return objId;
  68. }
  69. @Override
  70. public void setObjId(String objId) {
  71. this.objId = objId;
  72. }
  73. public BisInspKeyRegSecUnit() {
  74. }
  75. public String getId() {
  76. return id;
  77. }
  78. public void setId(String id) {
  79. this.id = id;
  80. }
  81. public String getSecId() {
  82. return secId;
  83. }
  84. public void setSecId(String secId) {
  85. this.secId = secId;
  86. }
  87. public String getNm() {
  88. return nm;
  89. }
  90. public void setNm(String nm) {
  91. this.nm = nm;
  92. }
  93. public String getNature() {
  94. return nature;
  95. }
  96. public void setNature(String nature) {
  97. this.nature = nature;
  98. }
  99. public String getGovernment() {
  100. return government;
  101. }
  102. public void setGovernment(String government) {
  103. this.government = government;
  104. }
  105. public String getPersId() {
  106. return persId;
  107. }
  108. public void setPersId(String persId) {
  109. this.persId = persId;
  110. }
  111. public Date getIntm() {
  112. return intm;
  113. }
  114. public void setIntm(Date intm) {
  115. this.intm = intm;
  116. }
  117. public Date getUptm() {
  118. return uptm;
  119. }
  120. public void setUptm(Date uptm) {
  121. this.uptm = uptm;
  122. }
  123. @Override
  124. public String toString() {
  125. return "BisInspKeyRegSecUnit [" + "id=" + id + ", secId=" + secId + ", nm=" + nm + ", nature=" + nature + ", government=" + government + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]";
  126. }
  127. }