LogDao.xml 488 B

1234567891011121314
  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="platform.modules.sys.log.dao.LogDao">
  4. <select id="selectRegLogs" resultType="platform.modules.sys.log.entity.Log">
  5. SELECT DISTINCT
  6. create_by
  7. FROM
  8. log
  9. where
  10. create_time <![CDATA[ >= ]]> #{stime}
  11. and create_time <![CDATA[ <= ]]> #{etime}
  12. </select>
  13. </mapper>