1234567891011121314151617181920212223 |
- <?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.zt.mapper.OrderItemMapper">
- <resultMap id="BaseResultMap" type="com.zt.pojo.OrderItem">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="orderId" column="order_id" jdbcType="BIGINT"/>
- <result property="goodsId" column="goods_id" jdbcType="BIGINT"/>
- <result property="num" column="num" jdbcType="INTEGER"/>
- <result property="price" column="price" jdbcType="DECIMAL"/>
- <result property="userId" column="user_id" jdbcType="BIGINT"/>
- <result property="totalPrice" column="total_price" jdbcType="DECIMAL"/>
- <result property="state" column="state" jdbcType="INTEGER"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,order_id,goods_id,
- num,price,user_id,
- total_price,state
- </sql>
- </mapper>
|