fe9d37f53d47fd7ab64aab019d7092f47a83eab5.svn-base 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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:AttProjectInsuranceParticip
  10. *
  11. * @author lql
  12. * @date 2026-4-21
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class AttProjectInsuranceParticip 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 = "legalEntity")
  24. private String legalEntity;
  25. // 法人联系人及电话
  26. @ApiModelProperty(value = "法人联系人及电话", name = "legalContactPhone")
  27. private String legalContactPhone;
  28. // 施工单位
  29. @ApiModelProperty(value = "施工单位", name = "constructorUnit")
  30. private String constructorUnit;
  31. // 施工联系人及电话
  32. @ApiModelProperty(value = "施工联系人及电话", name = "constructorContactPhone")
  33. private String constructorContactPhone;
  34. // 监理单位
  35. @ApiModelProperty(value = "监理单位", name = "supervisorUnit")
  36. private String supervisorUnit;
  37. // 监理联系人及电话
  38. @ApiModelProperty(value = "监理联系人及电话", name = "supervisorContactPhone")
  39. private String supervisorContactPhone;
  40. // 设计单位
  41. @ApiModelProperty(value = "设计单位", name = "designUnit")
  42. private String designUnit;
  43. // 设计联系人及电话
  44. @ApiModelProperty(value = "设计联系人及电话", name = "designContactPhone")
  45. private String designContactPhone;
  46. // 其他参建单位
  47. @ApiModelProperty(value = "其他参建单位", name = "otherParticipantUnit")
  48. private String otherParticipantUnit;
  49. // 其他参建单位联系人及电话
  50. @ApiModelProperty(value = "其他参建单位联系人及电话", name = "otherContactPhone")
  51. private String otherContactPhone;
  52. // 备注
  53. @ApiModelProperty(value = "备注", name = "remark")
  54. private String remark;
  55. // 创建时间
  56. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  57. @ApiModelProperty(value = "创建时间", name = "intm")
  58. private Date intm;
  59. // 修改时间
  60. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  61. @ApiModelProperty(value = "修改时间", name = "uptm")
  62. private Date uptm;
  63. // 数据状态
  64. @ApiModelProperty(value = "数据状态", name = "dataStat")
  65. private String dataStat;
  66. public AttProjectInsuranceParticip() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getProjectId() {
  75. return projectId;
  76. }
  77. public void setProjectId(String projectId) {
  78. this.projectId = projectId;
  79. }
  80. public String getLegalEntity() {
  81. return legalEntity;
  82. }
  83. public void setLegalEntity(String legalEntity) {
  84. this.legalEntity = legalEntity;
  85. }
  86. public String getLegalContactPhone() {
  87. return legalContactPhone;
  88. }
  89. public void setLegalContactPhone(String legalContactPhone) {
  90. this.legalContactPhone = legalContactPhone;
  91. }
  92. public String getConstructorUnit() {
  93. return constructorUnit;
  94. }
  95. public void setConstructorUnit(String constructorUnit) {
  96. this.constructorUnit = constructorUnit;
  97. }
  98. public String getConstructorContactPhone() {
  99. return constructorContactPhone;
  100. }
  101. public void setConstructorContactPhone(String constructorContactPhone) {
  102. this.constructorContactPhone = constructorContactPhone;
  103. }
  104. public String getSupervisorUnit() {
  105. return supervisorUnit;
  106. }
  107. public void setSupervisorUnit(String supervisorUnit) {
  108. this.supervisorUnit = supervisorUnit;
  109. }
  110. public String getSupervisorContactPhone() {
  111. return supervisorContactPhone;
  112. }
  113. public void setSupervisorContactPhone(String supervisorContactPhone) {
  114. this.supervisorContactPhone = supervisorContactPhone;
  115. }
  116. public String getDesignUnit() {
  117. return designUnit;
  118. }
  119. public void setDesignUnit(String designUnit) {
  120. this.designUnit = designUnit;
  121. }
  122. public String getDesignContactPhone() {
  123. return designContactPhone;
  124. }
  125. public void setDesignContactPhone(String designContactPhone) {
  126. this.designContactPhone = designContactPhone;
  127. }
  128. public String getOtherParticipantUnit() {
  129. return otherParticipantUnit;
  130. }
  131. public void setOtherParticipantUnit(String otherParticipantUnit) {
  132. this.otherParticipantUnit = otherParticipantUnit;
  133. }
  134. public String getOtherContactPhone() {
  135. return otherContactPhone;
  136. }
  137. public void setOtherContactPhone(String otherContactPhone) {
  138. this.otherContactPhone = otherContactPhone;
  139. }
  140. public String getRemark() {
  141. return remark;
  142. }
  143. public void setRemark(String remark) {
  144. this.remark = remark;
  145. }
  146. public Date getIntm() {
  147. return intm;
  148. }
  149. public void setIntm(Date intm) {
  150. this.intm = intm;
  151. }
  152. public Date getUptm() {
  153. return uptm;
  154. }
  155. public void setUptm(Date uptm) {
  156. this.uptm = uptm;
  157. }
  158. public String getDataStat() {
  159. return dataStat;
  160. }
  161. public void setDataStat(String dataStat) {
  162. this.dataStat = dataStat;
  163. }
  164. @Override
  165. public String toString() {
  166. return "AttProjectInsuranceParticip [" + "id=" + id + ", projectId=" + projectId + ", legalEntity=" + legalEntity + ", legalContactPhone=" + legalContactPhone + ", constructorUnit=" + constructorUnit + ", constructorContactPhone=" + constructorContactPhone + ", supervisorUnit=" + supervisorUnit + ", supervisorContactPhone=" + supervisorContactPhone + ", designUnit=" + designUnit + ", designContactPhone=" + designContactPhone + ", otherParticipantUnit=" + otherParticipantUnit + ", otherContactPhone=" + otherContactPhone + ", remark=" + remark + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  167. }
  168. }