|
|
@ -93,7 +93,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectDetailList" resultType="DmsBillsMaintDetailVo"
|
|
|
|
<select id="selectDetailList" resultType="org.dromara.dms.domain.DmsBillsMaintDetail"
|
|
|
|
parameterType="java.lang.Long">
|
|
|
|
parameterType="java.lang.Long">
|
|
|
|
select * from dms_bills_maint_detail where maint_instance_id = #{maintInstanceId}
|
|
|
|
select * from dms_bills_maint_detail where maint_instance_id = #{maintInstanceId}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
@ -103,7 +103,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
select * from dms_base_maint_station where maint_station_id = #{stationId}
|
|
|
|
select * from dms_base_maint_station where maint_station_id = #{stationId}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectPrjectIds" resultType="org.dromara.dms.domain.vo.DmsBaseMaintProjectVo">
|
|
|
|
<select id="selectPrjectIds" resultType="org.dromara.dms.domain.DmsBaseMaintProject">
|
|
|
|
SELECT x.maint_project_id,a.maint_project_name,a.maint_project_desc
|
|
|
|
SELECT x.maint_project_id,a.maint_project_name,a.maint_project_desc
|
|
|
|
FROM dms_base_station_project x
|
|
|
|
FROM dms_base_station_project x
|
|
|
|
left join dms_base_maint_project a on x.maint_project_id = a.maint_project_id
|
|
|
|
left join dms_base_maint_project a on x.maint_project_id = a.maint_project_id
|
|
|
|