You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
|
3 weeks ago
|
<?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="cc.hiver.mall.dao.mapper.MallOrderGroupMapper">
|
||
|
|
|
||
|
|
<resultMap id="groupMap" type="cc.hiver.mall.entity.MallOrderGroup">
|
||
|
|
<id column="id" property="id"/>
|
||
|
|
<result column="shop_id" property="shopId"/>
|
||
|
|
<result column="head_user_id" property="headUserId"/>
|
||
|
|
<result column="head_order_id" property="headOrderId"/>
|
||
|
|
<result column="group_Order_ids" property="groupOrderIds"/>
|
||
|
|
<result column="target_members" property="targetMembers"/>
|
||
|
|
<result column="current_members" property="currentMembers"/>
|
||
|
|
<result column="status" property="status"/>
|
||
|
|
<result column="group_price" property="groupPrice"/>
|
||
|
|
<result column="worker_id" property="workerId"/>
|
||
|
|
<result column="worker_commission" property="workerCommission"/>
|
||
|
|
<result column="total_delivery_fee" property="totalDeliveryFee"/>
|
||
|
|
<result column="create_time" property="createTime"/>
|
||
|
|
<result column="expire_time" property="expireTime"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
</mapper>
|