forked from integrated_whb/integrated_whb
parent
b4f2f2645c
commit
eca9838520
|
@ -217,7 +217,6 @@ public class OperatingVehiclesController extends BaseController {
|
||||||
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID
|
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID
|
||||||
page.setPd(pd);
|
page.setPd(pd);
|
||||||
List<PageData> varList = operatingVehiclesService.list(page); //列出Question列表
|
List<PageData> varList = operatingVehiclesService.list(page); //列出Question列表
|
||||||
|
|
||||||
map.put("varList", varList);
|
map.put("varList", varList);
|
||||||
map.put("page", page);
|
map.put("page", page);
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
|
|
|
@ -361,10 +361,12 @@
|
||||||
<select id="findById" resultType="com.zcloud.entity.PageData" parameterType="com.zcloud.entity.PageData">
|
<select id="findById" resultType="com.zcloud.entity.PageData" parameterType="com.zcloud.entity.PageData">
|
||||||
select
|
select
|
||||||
<include refid="Field"></include>,
|
<include refid="Field"></include>,
|
||||||
i.CORP_NAME
|
i.CORP_NAME,
|
||||||
|
su.NAME AS CASUALTYNAME
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include> f
|
<include refid="tableName"></include> f
|
||||||
left join bus_corp_info i on f.DEPARTMENT = i.CORPINFO_ID
|
left join bus_corp_info i on f.DEPARTMENT = i.CORPINFO_ID
|
||||||
|
LEFT JOIN sys_user su on su.USER_ID = f.USER_ID
|
||||||
where
|
where
|
||||||
f.ACCIDENTINVESTIGATION_ID = #{ACCIDENTINVESTIGATION_ID}
|
f.ACCIDENTINVESTIGATION_ID = #{ACCIDENTINVESTIGATION_ID}
|
||||||
</select>
|
</select>
|
||||||
|
|
|
@ -216,10 +216,12 @@
|
||||||
f.CREATORNAME,
|
f.CREATORNAME,
|
||||||
f.CREATTIME,
|
f.CREATTIME,
|
||||||
f.ISDELETE,
|
f.ISDELETE,
|
||||||
b.COMPANY_AREA
|
b.COMPANY_AREA,
|
||||||
|
dep.NAME AS DEPARTMENTNAME
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include> f
|
<include refid="tableName"></include> f
|
||||||
inner join bus_corp_info b on f.CORPINFO_ID = b.CORPINFO_ID
|
inner join bus_corp_info b on f.CORPINFO_ID = b.CORPINFO_ID
|
||||||
|
LEFT JOIN oa_department dep ON dep.DEPARTMENT_ID = f.BELONGING_DEPT
|
||||||
where
|
where
|
||||||
f.FREIGHTTRAILER_ID = #{FREIGHTTRAILER_ID}
|
f.FREIGHTTRAILER_ID = #{FREIGHTTRAILER_ID}
|
||||||
AND
|
AND
|
||||||
|
|
|
@ -298,9 +298,11 @@
|
||||||
<!-- 通过ID获取数据 -->
|
<!-- 通过ID获取数据 -->
|
||||||
<select id="findById" parameterType="pd" resultType="pd">
|
<select id="findById" parameterType="pd" resultType="pd">
|
||||||
select
|
select
|
||||||
<include refid="Field"></include>
|
<include refid="Field"></include>,
|
||||||
|
dep.NAME AS DEPARTMENTNAME
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include> f
|
<include refid="tableName"></include> f
|
||||||
|
LEFT JOIN oa_department dep on dep.DEPARTMENT_ID = f.BELONGING_DEPARTMENT
|
||||||
where
|
where
|
||||||
f.OPERATING_ID = #{OPERATING_ID} AND
|
f.OPERATING_ID = #{OPERATING_ID} AND
|
||||||
f.ISDELETE = '0' AND
|
f.ISDELETE = '0' AND
|
||||||
|
@ -561,9 +563,11 @@
|
||||||
<!-- 列表(全部) -->
|
<!-- 列表(全部) -->
|
||||||
<select id="datalistPage" parameterType="page" resultType="pd">
|
<select id="datalistPage" parameterType="page" resultType="pd">
|
||||||
select
|
select
|
||||||
<include refid="Field"></include>
|
<include refid="Field"></include>,
|
||||||
|
dep.NAME AS DEPARTMENTNAME
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include> f
|
<include refid="tableName"></include> f
|
||||||
|
inner join oa_department dep on dep.DEPARTMENT_ID = f.BELONGING_DEPARTMENT
|
||||||
where f.ISDELETE = '0' and f.CORPINFO_ID = #{pd.CORPINFO_ID}
|
where f.ISDELETE = '0' and f.CORPINFO_ID = #{pd.CORPINFO_ID}
|
||||||
<if test="pd.PLATE_NUMBER != null and pd.PLATE_NUMBER != ''"><!-- 关键词检索 -->
|
<if test="pd.PLATE_NUMBER != null and pd.PLATE_NUMBER != ''"><!-- 关键词检索 -->
|
||||||
and f.PLATE_NUMBER LIKE CONCAT(CONCAT('%', #{pd.PLATE_NUMBER}),'%')
|
and f.PLATE_NUMBER LIKE CONCAT(CONCAT('%', #{pd.PLATE_NUMBER}),'%')
|
||||||
|
|
Loading…
Reference in New Issue