增加了安全承诺书日期范围查询功能
parent
a088c7c173
commit
e3b1516b77
|
@ -2,11 +2,11 @@ spring.application.name=qa-prevention-gwj
|
||||||
server.port=8091
|
server.port=8091
|
||||||
|
|
||||||
#??
|
#??
|
||||||
spring.profiles.active=me
|
#spring.profiles.active=local
|
||||||
#<23><><EFBFBD><EFBFBD>31ʱʹ<CAB1><CAB9>
|
#<23><><EFBFBD><EFBFBD>31ʱʹ<CAB1><CAB9>
|
||||||
#spring.profiles.active=dev
|
#spring.profiles.active=dev
|
||||||
#??
|
#??
|
||||||
#spring.profiles.active=master
|
spring.profiles.active=master
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -133,6 +133,9 @@
|
||||||
<if test="pd.DEPARTMENT_ID != null and pd.DEPARTMENT_ID != ''"><!-- 关键词检索 -->
|
<if test="pd.DEPARTMENT_ID != null and pd.DEPARTMENT_ID != ''"><!-- 关键词检索 -->
|
||||||
and dept.DEPARTMENT_ID = #{pd.DEPARTMENT_ID}
|
and dept.DEPARTMENT_ID = #{pd.DEPARTMENT_ID}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="pd.ADDSTART != null and pd.ADDSTART != '' and pd.ADDEND != null and pd.ADDEND != ''"><!-- 日期范围检索 -->
|
||||||
|
and DATE(f.CREATTIME) between DATE(#{pd.ADDSTART}) and DATE(#{pd.ADDEND})
|
||||||
|
</if>
|
||||||
and dept.`NAME` is not null
|
and dept.`NAME` is not null
|
||||||
GROUP BY
|
GROUP BY
|
||||||
f.PROMISE_ID
|
f.PROMISE_ID
|
||||||
|
|
Loading…
Reference in New Issue