1234567891011121314151617 |
- <?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.zhongzheng.modules.order.mapper.OrderStudentInfoMapper">
- <resultMap type="com.zhongzheng.modules.order.domain.OrderStudentInfo" id="OrderStudentInfoResult">
- <result property="oderStudentId" column="oder_student_id"/>
- <result property="orderSn" column="order_sn"/>
- <result property="address" column="address"/>
- <result property="company" column="company"/>
- <result property="createTime" column="create_time"/>
- <result property="updateTime" column="update_time"/>
- </resultMap>
- </mapper>
|