07e25b5312f294d3298a4c88e5127e8fee4c7a79.svn-base 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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 java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * entity:AttProjectInsuranceRecord
  10. *
  11. * @author lql
  12. * @date 2026-4-21
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class AttProjectInsuranceRecord extends BaseBean implements Serializable {
  16. // ID
  17. @ApiModelProperty(value = "ID", name = "id")
  18. private String id;
  19. // 工程ID
  20. @ApiModelProperty(value = "工程ID", name = "projectId")
  21. private String projectId;
  22. // 投保人
  23. @ApiModelProperty(value = "投保人", name = "policyholder")
  24. private String policyholder;
  25. // 投保人联系电话
  26. @ApiModelProperty(value = "投保人联系电话", name = "policyholderPhone")
  27. private String policyholderPhone;
  28. // 保险公司
  29. @ApiModelProperty(value = "保险公司", name = "insuranceCompany")
  30. private String insuranceCompany;
  31. // 保险机构联系人
  32. @ApiModelProperty(value = "保险机构联系人", name = "insuranceContactPerson")
  33. private String insuranceContactPerson;
  34. // 保险机构联系电话
  35. @ApiModelProperty(value = "保险机构联系电话", name = "insuranceContactPhone")
  36. private String insuranceContactPhone;
  37. // 安责险保费(单位:万元)
  38. @ApiModelProperty(value = "安责险保费(单位:万元)", name = "premiumAmount")
  39. private String premiumAmount;
  40. // 事故预防服务费(单位:万元)
  41. @ApiModelProperty(value = "事故预防服务费(单位:万元)", name = "preventionServiceFee")
  42. private String preventionServiceFee;
  43. // 投保时间
  44. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  45. @ApiModelProperty(value = "投保时间", name = "insuranceDate")
  46. private Date insuranceDate;
  47. // 事故预防服务单位
  48. @ApiModelProperty(value = "事故预防服务单位", name = "preventionServiceUnit")
  49. private String preventionServiceUnit;
  50. // 服务单位联系人
  51. @ApiModelProperty(value = "服务单位联系人", name = "serviceUnitContactPerson")
  52. private String serviceUnitContactPerson;
  53. // 服务单位联系电话
  54. @ApiModelProperty(value = "服务单位联系电话", name = "serviceUnitContactPhone")
  55. private String serviceUnitContactPhone;
  56. // 创建时间
  57. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  58. @ApiModelProperty(value = "创建时间", name = "intm")
  59. private Date intm;
  60. // 修改时间
  61. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  62. @ApiModelProperty(value = "修改时间", name = "uptm")
  63. private Date uptm;
  64. // 数据状态
  65. @ApiModelProperty(value = "数据状态", name = "dataStat")
  66. private String dataStat;
  67. private String state;
  68. private String year;
  69. public String getYear() {
  70. return year;
  71. }
  72. public void setYear(String year) {
  73. this.year = year;
  74. }
  75. public String getState() {
  76. return state;
  77. }
  78. public void setState(String state) {
  79. this.state = state;
  80. }
  81. public AttProjectInsuranceRecord() {
  82. }
  83. public String getId() {
  84. return id;
  85. }
  86. public void setId(String id) {
  87. this.id = id;
  88. }
  89. public String getProjectId() {
  90. return projectId;
  91. }
  92. public void setProjectId(String projectId) {
  93. this.projectId = projectId;
  94. }
  95. public String getPolicyholder() {
  96. return policyholder;
  97. }
  98. public void setPolicyholder(String policyholder) {
  99. this.policyholder = policyholder;
  100. }
  101. public String getPolicyholderPhone() {
  102. return policyholderPhone;
  103. }
  104. public void setPolicyholderPhone(String policyholderPhone) {
  105. this.policyholderPhone = policyholderPhone;
  106. }
  107. public String getInsuranceCompany() {
  108. return insuranceCompany;
  109. }
  110. public void setInsuranceCompany(String insuranceCompany) {
  111. this.insuranceCompany = insuranceCompany;
  112. }
  113. public String getInsuranceContactPerson() {
  114. return insuranceContactPerson;
  115. }
  116. public void setInsuranceContactPerson(String insuranceContactPerson) {
  117. this.insuranceContactPerson = insuranceContactPerson;
  118. }
  119. public String getInsuranceContactPhone() {
  120. return insuranceContactPhone;
  121. }
  122. public void setInsuranceContactPhone(String insuranceContactPhone) {
  123. this.insuranceContactPhone = insuranceContactPhone;
  124. }
  125. public String getPremiumAmount() {
  126. return premiumAmount;
  127. }
  128. public void setPremiumAmount(String premiumAmount) {
  129. this.premiumAmount = premiumAmount;
  130. }
  131. public String getPreventionServiceFee() {
  132. return preventionServiceFee;
  133. }
  134. public void setPreventionServiceFee(String preventionServiceFee) {
  135. this.preventionServiceFee = preventionServiceFee;
  136. }
  137. public Date getInsuranceDate() {
  138. return insuranceDate;
  139. }
  140. public void setInsuranceDate(Date insuranceDate) {
  141. this.insuranceDate = insuranceDate;
  142. }
  143. public String getPreventionServiceUnit() {
  144. return preventionServiceUnit;
  145. }
  146. public void setPreventionServiceUnit(String preventionServiceUnit) {
  147. this.preventionServiceUnit = preventionServiceUnit;
  148. }
  149. public String getServiceUnitContactPerson() {
  150. return serviceUnitContactPerson;
  151. }
  152. public void setServiceUnitContactPerson(String serviceUnitContactPerson) {
  153. this.serviceUnitContactPerson = serviceUnitContactPerson;
  154. }
  155. public String getServiceUnitContactPhone() {
  156. return serviceUnitContactPhone;
  157. }
  158. public void setServiceUnitContactPhone(String serviceUnitContactPhone) {
  159. this.serviceUnitContactPhone = serviceUnitContactPhone;
  160. }
  161. public Date getIntm() {
  162. return intm;
  163. }
  164. public void setIntm(Date intm) {
  165. this.intm = intm;
  166. }
  167. public Date getUptm() {
  168. return uptm;
  169. }
  170. public void setUptm(Date uptm) {
  171. this.uptm = uptm;
  172. }
  173. public String getDataStat() {
  174. return dataStat;
  175. }
  176. public void setDataStat(String dataStat) {
  177. this.dataStat = dataStat;
  178. }
  179. @Override
  180. public String toString() {
  181. return "AttProjectInsuranceRecord [" + "id=" + id + ", projectId=" + projectId + ", policyholder=" + policyholder + ", policyholderPhone=" + policyholderPhone + ", insuranceCompany=" + insuranceCompany + ", insuranceContactPerson=" + insuranceContactPerson + ", insuranceContactPhone=" + insuranceContactPhone + ", premiumAmount=" + premiumAmount + ", preventionServiceFee=" + preventionServiceFee + ", insuranceDate=" + insuranceDate + ", preventionServiceUnit=" + preventionServiceUnit + ", serviceUnitContactPerson=" + serviceUnitContactPerson + ", serviceUnitContactPhone=" + serviceUnitContactPhone + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  182. }
  183. }