🎨 #3275【视频号】获取店铺基本信息接口返回数据 新增 店铺状态和 店铺原始ID字段

This commit is contained in:
nafil 2024-05-09 00:31:42 +08:00 committed by GitHub
parent e00af928c3
commit 119f2a54d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}