package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:AttProjectInsuranceParticip * * @author lql * @date 2026-4-21 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class AttProjectInsuranceParticip extends BaseBean implements Serializable { // ID @ApiModelProperty(value = "ID", name = "id") private String id; // 工程ID @ApiModelProperty(value = "工程ID", name = "projectId") private String projectId; // 项目法人单位 @ApiModelProperty(value = "项目法人单位", name = "legalEntity") private String legalEntity; // 法人联系人及电话 @ApiModelProperty(value = "法人联系人及电话", name = "legalContactPhone") private String legalContactPhone; // 施工单位 @ApiModelProperty(value = "施工单位", name = "constructorUnit") private String constructorUnit; // 施工联系人及电话 @ApiModelProperty(value = "施工联系人及电话", name = "constructorContactPhone") private String constructorContactPhone; // 监理单位 @ApiModelProperty(value = "监理单位", name = "supervisorUnit") private String supervisorUnit; // 监理联系人及电话 @ApiModelProperty(value = "监理联系人及电话", name = "supervisorContactPhone") private String supervisorContactPhone; // 设计单位 @ApiModelProperty(value = "设计单位", name = "designUnit") private String designUnit; // 设计联系人及电话 @ApiModelProperty(value = "设计联系人及电话", name = "designContactPhone") private String designContactPhone; // 其他参建单位 @ApiModelProperty(value = "其他参建单位", name = "otherParticipantUnit") private String otherParticipantUnit; // 其他参建单位联系人及电话 @ApiModelProperty(value = "其他参建单位联系人及电话", name = "otherContactPhone") private String otherContactPhone; // 备注 @ApiModelProperty(value = "备注", name = "remark") private String remark; // 创建时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态 @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; public AttProjectInsuranceParticip() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getProjectId() { return projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getLegalEntity() { return legalEntity; } public void setLegalEntity(String legalEntity) { this.legalEntity = legalEntity; } public String getLegalContactPhone() { return legalContactPhone; } public void setLegalContactPhone(String legalContactPhone) { this.legalContactPhone = legalContactPhone; } public String getConstructorUnit() { return constructorUnit; } public void setConstructorUnit(String constructorUnit) { this.constructorUnit = constructorUnit; } public String getConstructorContactPhone() { return constructorContactPhone; } public void setConstructorContactPhone(String constructorContactPhone) { this.constructorContactPhone = constructorContactPhone; } public String getSupervisorUnit() { return supervisorUnit; } public void setSupervisorUnit(String supervisorUnit) { this.supervisorUnit = supervisorUnit; } public String getSupervisorContactPhone() { return supervisorContactPhone; } public void setSupervisorContactPhone(String supervisorContactPhone) { this.supervisorContactPhone = supervisorContactPhone; } public String getDesignUnit() { return designUnit; } public void setDesignUnit(String designUnit) { this.designUnit = designUnit; } public String getDesignContactPhone() { return designContactPhone; } public void setDesignContactPhone(String designContactPhone) { this.designContactPhone = designContactPhone; } public String getOtherParticipantUnit() { return otherParticipantUnit; } public void setOtherParticipantUnit(String otherParticipantUnit) { this.otherParticipantUnit = otherParticipantUnit; } public String getOtherContactPhone() { return otherContactPhone; } public void setOtherContactPhone(String otherContactPhone) { this.otherContactPhone = otherContactPhone; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { 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 + "]"; } }