Commit fb122634 authored by 刘林's avatar 刘林

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

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