Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
【视频号】获取店铺基本信息接口返回数据 新增 店铺状态(status) 和 店铺原始ID(username) 字段
  • Loading branch information
nafil committed May 8, 2024
commit dfb2726db9625fada23b8a74e7f0136664b57488
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}