Commit 19ba219d by 吴迪

【新增】修改时间查询

parent 88a4d616
...@@ -524,6 +524,9 @@ ALTER COLUMN docfile varchar(200); ...@@ -524,6 +524,9 @@ ALTER COLUMN docfile varchar(200);
ALTER TABLE Policy ALTER TABLE Policy
ALTER COLUMN directpath varchar(200); ALTER COLUMN directpath varchar(200);
ALTER TABLE NewTopic
ALTER COLUMN Ppath varchar(200);
update index_carousel_manage set directpath = 'http://www.chinatrace.org/trace/clientDownload.html' where id =7; update index_carousel_manage set directpath = 'http://www.chinatrace.org/trace/clientDownload.html' where id =7;
update index_carousel_manage set directpath = '/Service/Book' where id =9; update index_carousel_manage set directpath = '/Service/Book' where id =9;
......
...@@ -67,6 +67,15 @@ ...@@ -67,6 +67,15 @@
<if test="params.clanguage !=null and params.clanguage !=''"> <if test="params.clanguage !=null and params.clanguage !=''">
and clanguage =#{params.clanguage} and clanguage =#{params.clanguage}
</if> </if>
<if test="params.updateTimeStart !=null and params.updateTimeEnd !=null">
and updatedate BETWEEN #{params.updateTimeStart} AND #{params.updateTimeEnd}
</if>
<if test="params.releaseTimeStart !=null and params.releaseTimeEnd !=null">
and releasedate BETWEEN #{params.releaseTimeStart} AND #{params.releaseTimeEnd}
</if>
<choose> <choose>
<when test="params.levels !=null"> <when test="params.levels !=null">
AND levels = #{params.levels} AND levels = #{params.levels}
......
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