|
|
@@ -26,10 +26,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="remark" column="remark" />
|
|
|
<result property="barCode" column="bar_code" />
|
|
|
<result property="loginAccount" column="login_account" />
|
|
|
+ <result property="itemCartJson" column="item_cart_json" />
|
|
|
+ <result property="integralByCart" column="integral_by_cart" />
|
|
|
+ <result property="barCodeCart" column="bar_code_cart" />
|
|
|
+ <result property="quantityCart" column="quantity_cart" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectFsIntegralOrderVo">
|
|
|
- select order_id, order_code, user_id,bar_code, user_name, user_phone, user_address, item_json, integral,pay_money,is_pay,pay_time,pay_type, status, delivery_code, delivery_name, delivery_sn, delivery_time, create_time,qw_user_id,company_user_id,company_id,remark,login_account from fs_integral_order
|
|
|
+ select order_id, order_code, user_id,bar_code, user_name, user_phone, user_address, item_json, integral,pay_money,is_pay,pay_time,pay_type, status,
|
|
|
+ delivery_code, delivery_name, delivery_sn, delivery_time, create_time,qw_user_id,company_user_id,company_id,remark,login_account,
|
|
|
+ item_cart_json,integral_by_cart,bar_code_cart,quantity_cart
|
|
|
+ from fs_integral_order
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectFsIntegralOrderList" parameterType="FsIntegralOrder" resultMap="FsIntegralOrderResult">
|