<?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.sandu.ximon.dao.mapper.ClientMapper">
|
|
<resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.Client">
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
<result property="clientName" column="client_name" jdbcType="VARCHAR"/>
|
<result property="clientSuperior" column="client_superior" jdbcType="VARCHAR"/>
|
<result property="linkMan" column="linkman" jdbcType="VARCHAR"/>
|
<result property="mobile" column="mobile" jdbcType="VARCHAR"/>
|
<result property="countLight" column="count_light" jdbcType="INTEGER"/>
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
</resultMap>
|
|
</mapper>
|