后台能力统计明细增加会议室申请
This commit is contained in:
parent
cd6c670a18
commit
98a0715bf5
|
@ -1906,7 +1906,22 @@
|
||||||
<if test="startDate != null and startDate != '' and endDate != null and endDate != ''">
|
<if test="startDate != null and startDate != '' and endDate != null and endDate != ''">
|
||||||
AND SUBSTR(taa.create_date, 1, 10) BETWEEN #{startDate} AND #{endDate}
|
AND SUBSTR(taa.create_date, 1, 10) BETWEEN #{startDate} AND #{endDate}
|
||||||
</if>
|
</if>
|
||||||
ORDER BY taa.create_date DESC
|
UNION
|
||||||
|
SELECT
|
||||||
|
tmb.dept AS 'deptName',
|
||||||
|
tm.`name` AS 'resourceName',
|
||||||
|
'青岛市大数据发展管理局' AS 'resourceDeptName',
|
||||||
|
'会议室' AS 'type',
|
||||||
|
tm.create_date AS 'createDate',
|
||||||
|
tmb.state AS 'approveStatus',
|
||||||
|
'' AS 'applyNumber'
|
||||||
|
FROM
|
||||||
|
t_meetingroom_book tmb,
|
||||||
|
t_meetingroom tm
|
||||||
|
WHERE
|
||||||
|
tmb.room_id = tm.id
|
||||||
|
|
||||||
|
ORDER BY createDate DESC
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectCollectList" resultType="java.util.Map">
|
<select id="selectCollectList" resultType="java.util.Map">
|
||||||
|
|
Loading…
Reference in New Issue