From 119f2a54d1e6d08ec5e63d99bfeb904b01b2ee45 Mon Sep 17 00:00:00 2001 From: nafil Date: Thu, 9 May 2024 00:31:42 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20#3275=E3=80=90=E8=A7=86=E9=A2=91?= =?UTF-8?q?=E5=8F=B7=E3=80=91=E8=8E=B7=E5=8F=96=E5=BA=97=E9=93=BA=E5=9F=BA?= =?UTF-8?q?=E6=9C=AC=E4=BF=A1=E6=81=AF=E6=8E=A5=E5=8F=A3=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=20=E6=96=B0=E5=A2=9E=20=E5=BA=97=E9=93=BA?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=92=8C=20=E5=BA=97=E9=93=BA=E5=8E=9F?= =?UTF-8?q?=E5=A7=8BID=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../me/chanjar/weixin/channel/bean/shop/ShopInfo.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/shop/ShopInfo.java b/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/shop/ShopInfo.java index b2209a430..12b4c684c 100644 --- a/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/shop/ShopInfo.java +++ b/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/shop/ShopInfo.java @@ -25,4 +25,12 @@ public class ShopInfo implements Serializable { /** 店铺类型,目前为"企业"或"个体工商户" */ @JsonProperty("subject_type") private String subjectType; + + /** 店铺状态,目前为 opening 或 open_finished 或 closing 或 close_finished */ + @JsonProperty("status") + private String status; + + /** 店铺原始ID */ + @JsonProperty("username") + private String username; }