22 lines
912 B
XML
22 lines
912 B
XML
![]() |
<?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="net.jieyuu.mapper.ProductTaskMapper">
|
||
|
|
||
|
<!-- 通用查询映射结果 -->
|
||
|
<resultMap id="BaseResultMap" type="net.jieyuu.model.ProductTaskDO">
|
||
|
<id column="id" property="id" />
|
||
|
<result column="product_id" property="productId" />
|
||
|
<result column="buy_num" property="buyNum" />
|
||
|
<result column="product_name" property="productName" />
|
||
|
<result column="lock_state" property="lockState" />
|
||
|
<result column="out_trade_no" property="outTradeNo" />
|
||
|
<result column="create_time" property="createTime" />
|
||
|
</resultMap>
|
||
|
|
||
|
<!-- 通用查询结果列 -->
|
||
|
<sql id="Base_Column_List">
|
||
|
id, product_id, buy_num, product_name, lock_state, out_trade_no, create_time
|
||
|
</sql>
|
||
|
|
||
|
</mapper>
|