From a23801eb31a64e9b6b85b2e012142cfd58131151 Mon Sep 17 00:00:00 2001 From: Jack <46790855@qq.com> Date: Wed, 17 Dec 2025 16:58:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=97=E9=93=BA=E9=85=8D=E9=80=81=E8=B4=B9?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=A2=9E=E5=8A=A0=E5=B9=B3=E5=8F=B0=E5=95=86?= =?UTF-8?q?=E5=AE=B6id=E5=AD=97=E6=AE=B5,=E5=B9=B3=E5=8F=B0=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E4=BF=9D=E5=AD=98=20=E8=87=AA=E9=85=8D=E9=80=81?= =?UTF-8?q?=EF=BC=8C=E5=86=85=E9=83=A8=E9=85=8D=E9=80=81=E8=B4=B9=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/suisung/mall/common/modules/store/ShopStoreInfo.java | 3 +++ .../shop/store/service/impl/ShopStoreBaseServiceImpl.java | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java b/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java index 4d9136e1..fafa733b 100644 --- a/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java +++ b/mall-common/src/main/java/com/suisung/mall/common/modules/store/ShopStoreInfo.java @@ -126,6 +126,9 @@ public class ShopStoreInfo implements Serializable { @ApiModelProperty(value = "店铺内部运费,单位(分)0-使用平台的内部运费;>0 使用店铺的内部运费") private Integer shopping_fee_inner; + @ApiModelProperty(value = "是否自配送:1-是;2-否;") + private Integer is_delivery_self; + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @ApiModelProperty(value = "新增时间") diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java index 14fb2e54..f7837a02 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java @@ -2503,6 +2503,10 @@ public class ShopStoreBaseServiceImpl extends BaseServiceImpl