Commit 5dffd1d4 authored by hkl's avatar hkl

feat:1.代码提交

parent ab1f5566
...@@ -6,8 +6,18 @@ ...@@ -6,8 +6,18 @@
<select id="queryPageList" resultType="org.jeecg.modules.deviceAsset.vo.SwitchManagementQueryVO"> <select id="queryPageList" resultType="org.jeecg.modules.deviceAsset.vo.SwitchManagementQueryVO">
SELECT SELECT
t1.*, t1.*,
t2.* t2.light_rail_id,
t2.light_rail_name,
t2.section_id,
t2.section_name,
t2.station_id,
t2.station_name,
t3.line_alias_name,
t3.line_alias_code
FROM FROM
t_da_switch_management t1 LEFT JOIN t_sn_section_station_map t2 ON t1.section_station_map_id = t2.id t_da_switch_management t1 LEFT JOIN t_sn_section_station_map t2 ON t1.section_station_map_id = t2.id
LEFT JOIN t_sn_line_alias t3 ON t1.line_alias_id = t3.id
</select> </select>
</mapper> </mapper>
\ No newline at end of file
...@@ -46,6 +46,12 @@ public class SwitchManagementQueryVO { ...@@ -46,6 +46,12 @@ public class SwitchManagementQueryVO {
@ApiModelProperty(value = "线别Id") @ApiModelProperty(value = "线别Id")
private String lineAliasId; private String lineAliasId;
@ApiModelProperty(value = "线别name")
private String lineAliasName;
@ApiModelProperty(value = "线别Id")
private String lineAliasCode;
@ApiModelProperty(value = "开向") @ApiModelProperty(value = "开向")
private String openTo; private String openTo;
...@@ -81,4 +87,5 @@ public class SwitchManagementQueryVO { ...@@ -81,4 +87,5 @@ public class SwitchManagementQueryVO {
@ApiModelProperty(value = "备注") @ApiModelProperty(value = "备注")
private String remark; private String remark;
} }
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