SysLogEntityMapper.xml 670 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="com.tuoren.web.layer.mapper.SysLogMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.tuoren.web.layer.entity.SysLogEntity">
  6. <id column="id" property="id" />
  7. <result column="name" property="name" />
  8. <result column="data" property="data" />
  9. <result column="type" property="type" />
  10. <result column="gmt_create" property="gmtCreate" />
  11. <result column="gmt_modified" property="gmtModified" />
  12. </resultMap>
  13. </mapper>