Commit 4aa18ebf authored by 鲁鸿波's avatar 鲁鸿波

技术交底监护人签字

parent 71700446
......@@ -164,6 +164,13 @@ public class THazardDisclosure extends SuperModel
@TableField("batch")
private Integer batch;
/**
* 监护人签字
*/
@ApiModelProperty(value = "监护人签字")
@TableField("guardian_signature")
private String guardianSignature;
public static final String ID ="id";
......
......@@ -1500,6 +1500,9 @@ public class THazardWorkPlanServiceImpl extends SuperServiceImpl<THazardWorkPlan
// 交底人签字信息
addSignatureInfo(disclosureSignatureInfos, "交底人签字", tHazardDisclosure.getDisclosurePersonSign(), sdf);
// 监护人签字信息
addSignatureInfo(disclosureSignatureInfos, "监护人签字", tHazardDisclosure.getGuardianSignature(), sdf);
// 作业人签字
addSignatureInfo(disclosureSignatureInfos, "作业人签字", tHazardDisclosure.getRecipientSignature(), sdf);
if (StringUtils.isNotEmpty(disclosureSignatureInfos)) {
......
......@@ -17,5 +17,6 @@
<id column="emergency_supplies_file" property="emergencySuppliesFile"/>
<id column="disclosure_person_sign" property="disclosurePersonSign"/>
<id column="recipient_signature" property="recipientSignature"/>
<id column="guardian_signature" property="guardianSignature"/>
</resultMap>
</mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment