Commit 75ee8e27 by jianshuqin

增加功能:同步OMS订单增加Skutype字段

parent c5cbaff7
......@@ -1357,7 +1357,7 @@ public class OrderSyncJob extends PointJob {
dcBaseOmsSku.setBailunSku(bailunSku.getBailunSku());
if (bailunSku.getProSkuItemExtVO() != null) {
dcBaseOmsSku.setBailunGroupSku(bailunSku.getProSkuItemExtVO().getGroupSku());
dcBaseOmsSku.setBailunSkuType(bailunSku.getProSkuItemExtVO().getToSkumsType());
dcBaseOmsSku.setBailunToSkuType(bailunSku.getProSkuItemExtVO().getToSkumsType());
}
if (dcBaseWarehouse != null) {
dcBaseOmsSku.setWarehouseCode(dcBaseWarehouse.getWarehouseCode());
......
......@@ -378,11 +378,11 @@ public class DcBaseOmsSku {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column dc_base_oms_sku.bailun_sku_type
* This field corresponds to the database column dc_base_oms_sku.bailun_to_sku_type
*
* @mbg.generated
*/
private Integer bailunSkuType;
private Integer bailunToSkuType;
/**
*
......
......@@ -524,8 +524,8 @@
<if test="bailunGroupSku != null">
bailun_group_sku,
</if>
<if test="bailunSkuType!= null">
bailun_sku_type,
<if test="bailunToSkuType != null">
bailun_to_sku_type,
</if>
<if test="bailunSkuTitleEn != null">
bailun_sku_title_en,
......@@ -925,8 +925,8 @@
<if test="bailunGroupSku != null">
#{bailunGroupSku,jdbcType=VARCHAR},
</if>
<if test="bailunSkuType != null">
#{bailunSkuType,jdbcType=INTEGER},
<if test="bailunToSkuType != null">
#{bailunToSkuType,jdbcType=INTEGER},
</if>
<if test="bailunSkuTitleEn != null">
#{bailunSkuTitleEn,jdbcType=VARCHAR},
......@@ -1344,8 +1344,8 @@
<if test="record.bailunGroupSku != null">
bailun_group_sku = #{record.bailunGroupSku,jdbcType=VARCHAR},
</if>
<if test="record.bailunSkuType != null">
bailun_sku_type = #{record.bailunSkuType,jdbcType=INTEGER},
<if test="record.bailunToSkuType != null">
bailun_to_sku_type = #{record.bailunToSkuType,jdbcType=INTEGER},
</if>
<if test="record.bailunSkuTitleEn != null">
bailun_sku_title_en = #{record.bailunSkuTitleEn,jdbcType=VARCHAR},
......
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