Commit 1ce1b3fc authored by Rensq's avatar Rensq

添加供电单位签字字段及SQL修改

parent 75c1643e
# 许可证修改备注字段为 text类型
ALTER TABLE t_hazard_license
ALTER COLUMN remarks TYPE TEXT;
\ No newline at end of file
ALTER COLUMN remarks TYPE TEXT;
# 添加许可证表字段
ALTER TABLE t_hazard_license ADD COLUMN power_unit_signature TEXT;
\ No newline at end of file
......@@ -123,6 +123,10 @@ public class THazardLicense extends SuperModel
@TableField("guardian_signature")
private String guardianSignature;
@ApiModelProperty(value = "供电单位签字")
@TableField("power_unit_signature")
private String powerUnitSignature;
public static final String ID ="id";
public static final String PLAN_ID ="plan_id";
public static final String WORK_TYPE ="work_type";
......
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