Authored by caoyan

香港仓

... ... @@ -37,7 +37,7 @@
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select id, product_id, goods_id, size_id, storage_num, update_time, create_time
select id, product_id, goods_id, size_id, storage_num, update_time, create_time, net_weight
from storage
where id = #{id,jdbcType=INTEGER}
</select>
... ...
... ... @@ -2649,7 +2649,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService, ApplicationCon
JSONObject responseData = body.getJSONObject("data");
if(code != 200) {
return body;
}else if(code == 200 && !responseData.getBooleanValue("isSuccess")) {
}else if(code == 200 && !responseData.getBooleanValue("success")) {
return responseData.getJSONObject("respResult");
}
... ...