SysLogCQuery.xml 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.bowintek.smartsearch.mapper.cquery.SysLogCQuery">
  4. <select id="selectLogList" resultType="com.bowintek.smartsearch.vo.system.LogModel">
  5. select l.logID,l.pageUrl,l.actionName,l.userID,l.logTime,us.name as userName,us.loginID,l.pageName,
  6. l.functionCode, l.functionName
  7. from sys_log l
  8. inner join sys_user us on l.userID = us.userID
  9. where 1=1
  10. <if test="userName!='' and userName!=null">
  11. and us.name like Concat('%',#{userName},'%')
  12. </if>
  13. <if test="loginID!='' and loginID!=null">
  14. and us.loginID like Concat('%',#{loginID},'%')
  15. </if>
  16. <if test="endDate != null">
  17. and l.logTime <![CDATA[ >= ]]> STR_TO_DATE(#{startDate},'%Y-%m-%d')
  18. </if>
  19. <if test="endDate != null ">
  20. and l.logTime <![CDATA[ < ]]> date_add(#{endDate}, interval 1 day)
  21. </if>
  22. <if test="idList!=null and idList.size>0">
  23. and l.logID in
  24. <foreach collection="idList" item="id" index="index" open="(" close=")" separator=",">
  25. #{id}
  26. </foreach>
  27. </if>
  28. order by l.logTime desc
  29. </select>
  30. </mapper>