- <?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.tuoren.web.layer.mapper.SysLogMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.tuoren.web.layer.entity.SysLogEntity">
- <id column="id" property="id" />
- <result column="name" property="name" />
- <result column="data" property="data" />
- <result column="type" property="type" />
- <result column="gmt_create" property="gmtCreate" />
- <result column="gmt_modified" property="gmtModified" />
- </resultMap>
- </mapper>
|