Commit 4f92ae3d by yinyong

数据中心--订单平台费映射文件提交

parent dc18615c
......@@ -132,7 +132,7 @@ public interface DcBaseOmsSkuMapper {
BigDecimal selectFBAFee(@Param("bailunSku") String bailunSku, @Param("webSite") String webSite, @Param("paidTime")LocalDateTime paidTime);
BigDecimal selectCostPlatformFee(@Param("bailunSku") String bailunSku, @Param("webSite") String webSite);
BigDecimal selectCostPlatformFee(@Param("bailunSku") String bailunSku, @Param("platformType") String platformType, @Param("webSite") String webSite);
DcBaseOmsSku selectOneByCreateTime(@Param("bailunSku") String bailunSku);
}
\ No newline at end of file
......@@ -3220,7 +3220,7 @@
</select>
<select id="selectCostPlatformFee" resultType="java.math.BigDecimal">
SELECT cost_platform_fee FROM dc_base_oms_sku where platform_type='FBA' AND bailun_sku=#{bailunSku} AND website=#{webSite} AND cost_platform_fee &gt; 0 limit 1
SELECT cost_platform_fee FROM dc_base_oms_sku where platform_type=#{platformType} AND bailun_sku=#{bailunSku} AND website=#{webSite} AND cost_platform_fee &gt; 0 limit 1
</select>
<select id="selectOneByCreateTime" resultType="com.bailuntec.domain.entity.DcBaseOmsSku">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment