-
-
Notifications
You must be signed in to change notification settings - Fork 9.1k
视频号小店增加相关接口 #3850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
视频号小店增加相关接口 #3850
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
ce5f6d2
fix(channel): 修改投诉历史中的电话号码类型
chuchengg 550b300
feat(channel): 更新订单支付信息字段
chuchengg 57bf3e3
feat(channel): 更新换货商品信息
chuchengg a6ee335
feat(channel): 增加售后拒绝原因适用场景字段
chuchengg c9ab956
feat(channel): 添加换货发货与拒绝发货接口
chuchengg 58efa30
feat(channel): 新增售后单商家协商
chuchengg 1129abb
feat(channel): 添加商品SPU信息字段
chuchengg eb4692e
Merge remote-tracking branch 'origin/develop' into develop
chuchengg 851676b
feat(channel): 添加店铺类目权限列表的接口
chuchengg f408b64
feat(channel): 1.获取类目信息接口返回信息新增资质信息
chuchengg aeb80b1
Update weixin-java-channel/src/main/java/me/chanjar/weixin/channel/be…
binarywang faa79ab
[WIP] Add interfaces for video shop features (#3851)
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...a-channel/src/main/java/me/chanjar/weixin/channel/bean/category/RelationCategoryItem.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| package me.chanjar.weixin.channel.bean.category; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| import java.io.Serializable; | ||
|
|
||
| /** | ||
| * 店铺类目权限列表项 | ||
| * | ||
| * @author <a href="https://gitee.com/cchengg">chucheng</a> | ||
| */ | ||
| @Data | ||
| @NoArgsConstructor | ||
| public class RelationCategoryItem implements Serializable { | ||
|
|
||
| /** 类目id */ | ||
| @JsonProperty("id") | ||
| private Long id; | ||
|
|
||
| /** 类目状态, 1生效中,2已失效 */ | ||
| @JsonProperty("status") | ||
| private Integer status; | ||
|
|
||
| /** 失效原因 */ | ||
| @JsonProperty("uneffective_reason") | ||
| private String uneffectiveReason; | ||
|
|
||
| /** 生效时间 */ | ||
| @JsonProperty("effective_time") | ||
| private Long effectiveTime; | ||
|
|
||
| /** 失效时间 */ | ||
| @JsonProperty("uneffective_time") | ||
| private Long uneffectiveTime; | ||
|
|
||
| /** 类目资质id */ | ||
| @JsonProperty("qua_id") | ||
| private Long quaId; | ||
| } |
28 changes: 28 additions & 0 deletions
28
...hannel/src/main/java/me/chanjar/weixin/channel/bean/category/RelationCategoryRequest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| package me.chanjar.weixin.channel.bean.category; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||
| import java.io.Serializable; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| /** | ||
| * 类目权限列表请求参数 | ||
| * | ||
| * @author <a href="https://github.com/lixize">Zeyes</a> | ||
| */ | ||
| @Data | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class RelationCategoryRequest implements Serializable { | ||
|
|
||
| private static final long serialVersionUID = -8765432109876543210L; | ||
|
|
||
| /** 是否按状态筛选 */ | ||
| @JsonProperty("is_filter_status") | ||
| private Boolean isFilterStatus; | ||
|
|
||
| /** 类目状态(当 isFilterStatus 为 true 时有效) */ | ||
| @JsonProperty("status") | ||
| private Integer status; | ||
| } |
25 changes: 25 additions & 0 deletions
25
...annel/src/main/java/me/chanjar/weixin/channel/bean/category/RelationCategoryResponse.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| package me.chanjar.weixin.channel.bean.category; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||
| import java.util.List; | ||
| import lombok.Data; | ||
| import lombok.EqualsAndHashCode; | ||
| import lombok.NoArgsConstructor; | ||
| import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; | ||
|
|
||
| /** | ||
| * 店铺的类目权限列表响应 | ||
| * | ||
| * @author <a href="https://gitee.com/cchengg">chucheng</a> | ||
| */ | ||
| @Data | ||
| @NoArgsConstructor | ||
| @EqualsAndHashCode(callSuper = true) | ||
| public class RelationCategoryResponse extends WxChannelBaseResponse { | ||
|
|
||
| private static final long serialVersionUID = -8473920857463918245L; | ||
|
|
||
| @JsonProperty("list") | ||
| private List<RelationCategoryItem> list; | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...n-java-channel/src/main/java/me/chanjar/weixin/channel/bean/product/TimingOnSaleInfo.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| package me.chanjar.weixin.channel.bean.product; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||
| import lombok.AllArgsConstructor; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| import java.io.Serializable; | ||
|
|
||
| /** | ||
| * 商品待开售信息 | ||
| * | ||
| * @author <a href="https://gitee.com/cchengg">chu</a> | ||
| */ | ||
| @Data | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class TimingOnSaleInfo implements Serializable { | ||
|
|
||
| /** 状态枚举 0-没有待开售;1-待开售 */ | ||
| @JsonProperty("status") | ||
| private Integer status; | ||
|
|
||
| /** 开售时间,秒级时间戳,0为未配置时间 */ | ||
| @JsonProperty("onsale_time") | ||
| private Long onSaleTime; | ||
|
|
||
| /** 是否隐藏价格 0-不隐藏;1-隐藏 */ | ||
| @JsonProperty("is_hide_price") | ||
| private Integer isHidePrice; | ||
|
|
||
| /** 待开售任务ID,可用于请求立即开售 */ | ||
| @JsonProperty("task_id") | ||
| private Integer taskId; | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.