Commit f73fbe85 authored by wujiang's avatar wujiang

添加施工单位

parent 20489888
...@@ -101,4 +101,7 @@ public class TzsJgBasicInfoDto extends BaseDto { ...@@ -101,4 +101,7 @@ public class TzsJgBasicInfoDto extends BaseDto {
private List<TzsJgEnclosureInfoDto> enclousureInfo; private List<TzsJgEnclosureInfoDto> enclousureInfo;
private String superviseKey; private String superviseKey;
@ApiModelProperty(value = "施工单位名称")
private String uscUnitName;
} }
...@@ -20,7 +20,8 @@ ...@@ -20,7 +20,8 @@
registration.use_org_code, registration.use_org_code,
produce.factory_num, produce.factory_num,
CONCAT(use1.province,'/',use1.city,'/',use1.county)AS area, CONCAT(use1.province,'/',use1.city,'/',use1.county)AS area,
use1.address use1.address,
cons.usc_unit_name
FROM tz_jg_use_info use1 FROM tz_jg_use_info use1
LEFT JOIN LEFT JOIN
tz_jg_supervise_info supervise ON use1.sequence_code = tz_jg_supervise_info supervise ON use1.sequence_code =
...@@ -39,6 +40,7 @@ ...@@ -39,6 +40,7 @@
tz_jg_produce_info produce ON produce.sequence_code = tz_jg_produce_info produce ON produce.sequence_code =
supervise.sequence_code supervise.sequence_code
LEFT JOIN tz_equipment_category ec ON ec.`code` = registration.equ_define LEFT JOIN tz_equipment_category ec ON ec.`code` = registration.equ_define
LEFT JOIN tz_jg_construction_info cons ON cons.sequence_code = supervise.sequence_code
<where> <where>
<if test="categoryCodes != null and categoryCodes.size>0"> <if test="categoryCodes != null and categoryCodes.size>0">
and ( registration.equ_define in and ( registration.equ_define in
......
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