LymsLogsMapper.xml 952 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.lyms.talkonlineweb.mapper.LymsLogsMapper">

<resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.LymsLogs">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="cls" column="cls" jdbcType="VARCHAR"/>
<result property="func" column="func" jdbcType="VARCHAR"/>
<result property="lvl" column="lvl" jdbcType="VARCHAR"/>
<result property="logger" column="logger" jdbcType="VARCHAR"/>
<result property="message" column="message" jdbcType="VARCHAR"/>
<result property="logDate" column="log_date" jdbcType="TIMESTAMP"/>
</resultMap>

<sql id="Base_Column_List">
id,cls,func,
lvl,logger,message,
log_date
</sql>
</mapper>