Commit fb122634 authored by 刘林's avatar 刘林

fix(jg):证打印标记功能开发

parent e9c233b7
......@@ -351,4 +351,7 @@ public class JgInstallationNoticeDto extends BaseDto {
*/
@ApiModelProperty("end_latitude_longitude")
private JSONObject endLatitudeLongitude;
@ApiModelProperty("证书打印标记")
private String certificatePrintTag;
}
......@@ -149,6 +149,6 @@ public class JgUseRegistrationManageDto extends BaseDto {
@ApiModelProperty("使用单位seq")
private String useUnitSeq;
@ApiModelProperty("证书是否打印标记")
@ApiModelProperty("证书打印标记")
private String certificatePrintTag;
}
......@@ -504,4 +504,10 @@ public class JgInstallationNotice extends BaseEntity {
*/
@TableField("end_latitude_longitude")
private String endLatitudeLongitude;
/**
* 证书打印标记
*/
@TableField("certificate_print_tag")
private String certificatePrintTag;
}
......@@ -243,7 +243,7 @@ public class JgUseRegistrationManage extends BaseEntity {
private String isDoBusiness;
/**
* 证书是否打印标记
* 证书打印标记
*/
@TableField("certificate_print_tag")
private String certificatePrintTag;
......
......@@ -32,7 +32,8 @@
isn.next_execute_user_ids as nextExecuteUserIds,
(SELECT name from tz_equipment_category where code = isn.equ_list_code) AS equListName,
(SELECT name from tz_equipment_category where code = isn.equ_category_code) AS equList,
isn.cancel_reason as cancelReason
isn.cancel_reason as cancelReason,
isn.certificate_print_tag AS certificatePrintTag
</sql>
<select id="queryForPage" resultType="java.util.Map">
......
......@@ -137,4 +137,7 @@ public class IdxBizJgProjectContraptionDto extends BaseDto {
@ApiModelProperty("最新一次管道改造的长度变化值(正值为增加,负值为减少)")
private String pipeLengthChanged;
@ApiModelProperty("证书打印标记")
private String certificatePrintTag;
}
......@@ -294,4 +294,10 @@ public class IdxBizJgProjectContraption extends BaseEntity {
@TableField(exist = false)
private String estateUnitName;
/**
* 证书打印标记
*/
@TableField("certificate_print_tag")
private String certificatePrintTag;
}
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