repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveEcDataSummary.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveEcDataSummary.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 电商数据概要数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class LiveEcDataSummary implements Serializable { private static final long serialVersionUID = - 6634047980552575196L; /** * 成交金额(单位:分) */ @JsonProperty("total_gmv") private Long totalGmv; /** * 成交次数 */ @JsonProperty("total_pay_pv") private Long totalPayPv; /** * 成交人数 */ @JsonProperty("total_pay_uv") private Long totalPayUv; /** * 订单创建次数 */ @JsonProperty("total_create_pv") private Long totalCreatePv; /** * 订单创建人数 */ @JsonProperty("total_create_uv") private Long totalCreateUv; /** * 总点击次数 */ @JsonProperty("total_clk_pv") private Long totalClkPv; /** * 总点击人数 */ @JsonProperty("total_clk_uv") private Long totalClkUv; /** * 总曝光次数 */ @JsonProperty("total_exp_pv") private Long totalExpPv; /** * 总曝光人数 */ @JsonProperty("total_exp_uv") private Long totalExpUv; /** * 在线观众数 */ @JsonProperty("online_audience_count") private Long onlineAudienceCount; /** * 累计观众数 */ @JsonProperty("cumulative_audience_count") private Long cumulativeAudienceCount; /** * 新增观众数 */ @JsonProperty("new_audience_count") private Long newAudienceCount; /** * 剩余观众数 */ @JsonProperty("leaved_audience_count") private Long leavedAudienceCount; /** * 观众平均观看秒数 */ @JsonProperty("average_watch_seconds_per_audience") private Long averageWatchSecondsPerAudience; /** * 新增关注数 */ @JsonProperty("new_follow_count") private Long newFollowCount; /** * 新增评论数 */ @JsonProperty("new_comment_count") private Long newCommentCount; /** * 分享直播观众数 */ @JsonProperty("share_live_audience_count") private Long shareLiveAudienceCount; /** * 新粉丝俱乐部数 */ @JsonProperty("new_fans_club_count") private Long newFansClubCount; /** * 退费次数 */ @JsonProperty("refund_pv") private Long refundPv; /** * 退费人数 */ @JsonProperty("refund_uv") private Long refundUv; /** * 退费率 */ @JsonProperty("refund_rate") private Double refundRate; /** * 退款金额(单位:分) */ @JsonProperty("refund_amount") private Long refundAmount; /** * 退费商品件数 */ @JsonProperty("refund_product_cnt") private Long refundProductCnt; /** * 广告累计观众数 */ @JsonProperty("ads_cumulative_audience_count") private Long adsCumulativeAudienceCount; /** * 广告累计观看数 */ @JsonProperty("ads_cumulative_watch_count") private Long adsCumulativeWatchCount; /** * 促销累计观看数 */ @JsonProperty("promotion_cumulative_watch_count") private Long promotionCumulativeWatchCount; /** * 千次看播成交总额 */ @JsonProperty("gmv_per_thousand_cumulative_watch_pv") private Double gmvPerThousandCumulativeWatchPv; /** * 观众成交率 */ @JsonProperty("audience_pay_ratio") private Double audiencePayRatio; /** * 点击成交率 */ @JsonProperty("clk_pay_ratio") private Double clkPayRatio; /** * 新买家人数 */ @JsonProperty("new_buyer_uv") private Long newBuyerUv; /** * 老买家人数 */ @JsonProperty("old_buyer_uv") private Long oldBuyerUv; /** * 客户价格 */ @JsonProperty("customer_price") private Long customerPrice; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/OnAirIndexItem.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/OnAirIndexItem.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 在播内容力指标数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class OnAirIndexItem implements Serializable { private static final long serialVersionUID = - 2988342521964183666L; /** * 描述最近多少分钟的指标值 */ @JsonProperty("n") private Integer n; /** * 最近 n 分钟该指标的值 */ @JsonProperty("last_n_mins_value") private Integer lastNMinsValue; /** * 最近 2n 到 n 分钟该指标的值(用于环比) */ @JsonProperty("last_2n_to_n_mins_value") private Integer last2nToNMinsValue; /** * 最近 n 分钟该指标值打败了 xx% 的在播主播 */ @JsonProperty("last_n_mins_percentile") private Integer lastNMinsPercentile; /** * 整场直播的指标值 */ @JsonProperty("value") private Long value; /** * 整场直播该指标值打败了 xx% 的主播 */ @JsonProperty("percentile") private Integer percentile; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData2.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData2.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 直播大屏实体 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class LiveDashboardData2 implements Serializable { private static final long serialVersionUID = 3657714024563123097L; /** * 直播基础数据 */ @JsonProperty("summary") private LiveDashboardData2Summary summary; /** * 直播流量渠道 */ @JsonProperty("source") private LiveDashboardData2Source source; /** * 直播观众画像 */ @JsonProperty("portrait") private LiveDashboardData2Portrait portrait; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData2Summary.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData2Summary.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 直播基础数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class LiveDashboardData2Summary implements Serializable { private static final long serialVersionUID = - 9029702302333930066L; /** * 观看人数 */ @JsonProperty("new_watch_uv") private Long newWatchUv; /** * 最大在线人数 */ @JsonProperty("max_online_watch_uv") private Long maxOnlineWatchUv; /** * 曝光人数 */ @JsonProperty("impression_uv") private Long impressionUv; /** * 平均观看时长(秒) */ @JsonProperty("average_watch_seconds_per_audience") private Long averageWatchSecondsPerAudience; /** * 新增关注人数 */ @JsonProperty("new_follow_uv") private Long newFollowUv; /** * 新增粉丝团人数 */ @JsonProperty("new_fans_club_uv") private Long newFansClubUv; /** * 评论人数 */ @JsonProperty("comment_uv") private Long commentUv; /** * 打赏人数 */ @JsonProperty("reward_uv") private Long rewardUv; /** * 分享直播间人数 */ @JsonProperty("sharing_uv") private Long sharingUv; /** * 热度 */ @JsonProperty("hot_quota") private Long hotQuota; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/SpuBaseData.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/SpuBaseData.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 商品基础数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class SpuBaseData implements Serializable { private static final long serialVersionUID = 3170611962212344198L; /** * 店铺商品id */ @JsonProperty("src_spu_id") private String srcSpuId; /** * 店铺id */ @JsonProperty("src") private Long src; /** * 商品名称 */ @JsonProperty("spu_name") private String spuName; /** * 商品id */ @JsonProperty("spu_id") private Long spuId; /** * 商品小图 */ @JsonProperty("thumb_url") private String thumbUrl; /** * 商品价格 */ @JsonProperty("price") private Long price; /** * 店铺名称 */ @JsonProperty("src_name") private String srcName; /** * 库存 */ @JsonProperty("stock") private Long stock; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveListResponse.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; import java.util.List; /** * 获取直播大屏直播列表响应 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class LiveListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = - 5062337147636715367L; /** * 追踪ID,报bug带 */ @JsonProperty("trace_id") private String traceId; /** * 直播列表 */ @JsonProperty("live_items") private List<LiveItem> liveItems; /** * 是否还有更多的直播 */ @JsonProperty("has_more") private Boolean hasMore; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/QuarterlyGrowthRate.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/QuarterlyGrowthRate.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 转化率环比数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class QuarterlyGrowthRate implements Serializable { private static final long serialVersionUID = 1683118806978367016L; /** * 环比(近10分钟转化率数据才有) */ @JsonProperty("value") private Long value; /** * 环比是否是有效值(如果是false说明分母是0) */ @JsonProperty("is_valid") private Boolean isValid; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/Series.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/Series.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; import java.util.List; /** * 维度标签的时间序列(与指标的类型无关) * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class Series implements Serializable { private static final long serialVersionUID = 507937573085880287L; /** * 数据点 */ @JsonProperty("points") private List<Point> points; /** * 描述时间序列的维度标签 */ @JsonProperty("dimensions") private List<Dimension> dimensions; /** * 每个数据点描述的时间长度(秒) */ @JsonProperty("step") private Long step; /** * 该时间序列的起始时间戳 */ @JsonProperty("begin_ts") private Long beginTs; /** * 该时间序列的结束时间戳 */ @JsonProperty("end_ts") private Long endTs; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDistributionByFlowTypeStat.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDistributionByFlowTypeStat.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; import java.util.List; /** * 流量类型、渠道层级的渠道分析统计数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class LiveDistributionByFlowTypeStat implements Serializable { private static final long serialVersionUID = 5885014384803438677L; /** * 渠道流量类型 {@link me.chanjar.weixin.channel.enums.LiveDistributionFlowType} */ @JsonProperty("live_dst_channel_type") private Integer liveDstChannelType; /** * 一级类目渠道来源指标划分 */ @JsonProperty("channel_source_stats") private List<LiveDistChannelSourceStats> channelSourceStats; /** * 在该渠道下的统计值 */ @JsonProperty("metric_value") private Long metricValue; /** * GMV总值(单位:分) */ @JsonProperty("gmv") private Long gmv; /** * UV总值 */ @JsonProperty("uv") private Long uv; /** * 千次看播成交(单位: 分)(GPV) */ @JsonProperty("gmv_per_uv") private Long gmvPerUv; /** * PV总值 */ @JsonProperty("pv") private Long pv; /** * 当前层级pv占总pv的比例 */ @JsonProperty("pv_ratio") private Double pvRatio; /** * uv占比 */ @JsonProperty("uv_ratio") private Double uvRatio; /** * 在该渠道下的统计值比率 */ @JsonProperty("metric_value_ratio") private Double metricValueRatio; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/DataNodeThirdList.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/DataNodeThirdList.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; import java.util.List; /** * 不同用户群体的统计数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class DataNodeThirdList implements Serializable { private static final long serialVersionUID = - 7534433586440870881L; /** * 每个对象包含一个 key,表示用户群体的名称,例如 "已成交用户"、"首次购买用户"、"复购用户" */ @JsonProperty("key") private String key; /** * 包含该用户群体下不同分类的统计数据 */ @JsonProperty("row") private List<DataNodeSecondList> row; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveEcConversionMetric.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveEcConversionMetric.java
package me.chanjar.weixin.channel.bean.live.dashboard; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 电商转化力数据 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor public class LiveEcConversionMetric implements Serializable { private static final long serialVersionUID = - 7332281175637902883L; /** * 近10分钟转化率数据 */ @JsonProperty("recent_10_min_conversion") private ConversionMetric recent10MinConversion; /** * 整场直播 */ @JsonProperty("whole_live_conversion") private ConversionMetric wholeLiveConversion; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/AuditResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/AuditResponse.java
package me.chanjar.weixin.channel.bean.audit; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 审核结果响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class AuditResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 9218713381520774914L; /** 审核结果 1:审核中,3:审核成功,2:审核拒绝,12:主动取消申请单 */ @JsonProperty("data") private AuditResult data; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CatsV2.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CatsV2.java
package me.chanjar.weixin.channel.bean.audit; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 新类目树类目ID * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor public class CatsV2 implements Serializable { private static final long serialVersionUID = -2484092110142035589L; /** 新类目树类目ID */ @JsonProperty("cat_id") private String catId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CategoryAuditRequest.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CategoryAuditRequest.java
package me.chanjar.weixin.channel.bean.audit; 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 CategoryAuditRequest implements Serializable { private static final long serialVersionUID = -1151634735247657643L; @JsonProperty("category_info") private CategoryAuditInfo categoryInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/AuditApplyResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/AuditApplyResponse.java
package me.chanjar.weixin.channel.bean.audit; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 审核提交结果响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class AuditApplyResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -3950614749162384497L; /** 类目列表 */ @JsonProperty("audit_id") private String auditId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CategoryBrand.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CategoryBrand.java
package me.chanjar.weixin.channel.bean.audit; 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 CategoryBrand implements Serializable { private static final long serialVersionUID = -5437441266080209907L; /** 品牌ID,是店铺申请且已审核通过的品牌ID */ @JsonProperty("brand_id") private String brand_id; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CategoryAuditInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/CategoryAuditInfo.java
package me.chanjar.weixin.channel.bean.audit; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 类目审核信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class CategoryAuditInfo implements Serializable { private static final long serialVersionUID = -8792967130645424788L; /** 一级类目,字符类型,最长不超过10 */ @JsonProperty("level1") private Long level1; /** 二级类目,字符类型,最长不超过10 */ @JsonProperty("level2") private Long level2; /** 三级类目,字符类型,最长不超过10 */ @JsonProperty("level3") private Long level3; /** 新类目树类目ID */ @JsonProperty("cats_v2") private List<CatsV2> catsV2; /** 资质材料,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("certificate") private List<String> certificates; /** 报备函,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("baobeihan") private List<String> baobeihan; /** 经营证明,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("jingyingzhengming") private List<String> jingyingzhengming; /** 带货口碑,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("daihuokoubei") private List<String> daihuokoubei; /** 入住资质,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("ruzhuzhizhi") private List<String> ruzhuzhizhi; /** 经营流水,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("jingyingliushui") private List<String> jingyingliushui; /** 补充材料,图片fileid,图片类型,最多不超过10张 */ @JsonProperty("buchongcailiao") private List<String> buchongcailiao; /** 经营平台,仅支持taobao,jd,douyin,kuaishou,pdd,other这些取值 */ @JsonProperty("jingyingpingtai") private String jingyingpingtai; /** 账号名称 */ @JsonProperty("zhanghaomingcheng") private String zhanghaomingcheng; /** 品牌列表,获取类目信息中的attr.is_limit_brand为true时必传 */ @JsonProperty("brand_list") private List<CategoryBrand> brandList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/AuditResult.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/AuditResult.java
package me.chanjar.weixin.channel.bean.audit; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 审核结果 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AuditResult implements Serializable { private static final long serialVersionUID = 1846416634865665240L; /** 审核状态, 0:审核中,1:审核成功,9:审核拒绝, 12:主动取消 */ @JsonProperty("status") private Integer status; /** 如果审核拒绝,返回拒绝原因 */ @JsonProperty("reject_reason") private String rejectReason; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/ProductAuditInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/audit/ProductAuditInfo.java
package me.chanjar.weixin.channel.bean.audit; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 商品审核信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class ProductAuditInfo implements Serializable { private static final long serialVersionUID = -5264206679057480206L; /** 审核单id */ @JsonProperty("audit_id") private String auditId; /** 上一次提交时间, yyyy-MM-dd HH:mm:ss */ @JsonProperty("submit_time") private String submitTime; /** 上一次审核时间, yyyy-MM-dd HH:mm:ss */ @JsonProperty("audit_time") private String auditTime; /** 拒绝理由,只有edit_status为3时出现 */ @JsonProperty("reject_reason") private String rejectReason; @JsonProperty("func_type") private Integer funcType; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DeliveryProductInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DeliveryProductInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.delivery.FreightProductInfo; /** * 发货物流信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class DeliveryProductInfo implements Serializable { private static final long serialVersionUID = -8110532854439612471L; /** 快递单号 */ @JsonProperty("waybill_id") private String waybillId; /** 快递公司编码 */ @JsonProperty("delivery_id") private String deliveryId; /** 包裹中商品信息 */ @JsonProperty("product_infos") private List<FreightProductInfo> productInfos; /** 快递公司名称 */ @JsonProperty("delivery_name") private String deliveryName; /** 发货时间,秒级时间戳 */ @JsonProperty("delivery_time") private Long deliveryTime; /** 配送方式,枚举值见DeliveryType {@link me.chanjar.weixin.channel.enums.DeliveryType} */ @JsonProperty("deliver_type") private Integer deliverType; /** 发货地址 */ @JsonProperty("delivery_address") private OrderAddressInfo deliveryAddress; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderPriceInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderPriceInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 商店订单价格信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderPriceInfo implements Serializable { private static final long serialVersionUID = 5216506688949493432L; /** * 商品总价,单位为分 */ @JsonProperty("product_price") private Integer productPrice; /** * 订单金额,单位为分 */ @JsonProperty("order_price") private Integer orderPrice; /** * 运费,单位为分 */ @JsonProperty("freight") private Integer freight; /** * 优惠金额,单位为分 */ @JsonProperty("discounted_price") private Integer discountedPrice; /** * 是否有优惠 */ @JsonProperty("is_discounted") private Boolean isDiscounted; /** * 订单原始价格,单位为分 */ @JsonProperty("original_order_price") private Integer originalOrderPrice; /** * 商品预估价格,单位为分 */ @JsonProperty("estimate_product_price") private Integer estimateProductPrice; /** * 改价后降低金额,单位为分 */ @JsonProperty("change_down_price") private Integer changeDownPrice; /** * 改价后运费,单位为分 */ @JsonProperty("change_freight") private Integer changeFreight; /** * 是否修改运费 */ @JsonProperty("is_change_freight") private Boolean changeFreighted; /** * 是否使用了会员积分抵扣 */ @JsonProperty("use_deduction") private Boolean useDeduction; /** * 会员积分抵扣金额,单位为分 */ @JsonProperty("deduction_price") private Integer deductionPrice; /** * 商家实收金额,单位为分 * merchant_receieve_price=original_order_price-discounted_price-deduction_price-change_down_price */ @JsonProperty("merchant_receieve_price") private Integer merchantReceivePrice; /** * 商家优惠金额,单位为分,含义同discounted_price,必填 */ @JsonProperty("merchant_discounted_price") private Integer merchantDiscountedPrice; /** * 达人优惠金额,单位为分 */ @JsonProperty("finder_discounted_price") private Integer finderDiscountedPrice; /** * 订单维度会员权益优惠金额 */ @JsonProperty("vip_discounted_price") private Integer vipDiscountedPrice; /** * 订单维度一起买优惠金额,单位为分 */ @JsonProperty("bulkbuy_discounted_price") private Integer bulkbuyDiscountedPrice; /** * 订单维度国补优惠金额 */ @JsonProperty("national_subsidy_discounted_price") private Integer nationalSubsidyDiscountedPrice; /** * 订单维度平台券优惠金额,单位为分 */ @JsonProperty("cash_coupon_discounted_price") private Integer cashCouponDiscountedPrice; /** * 订单维度地方补贴优惠金额(商家出资),单位为分 */ @JsonProperty("national_subsidy_merchant_discounted_price") private Integer nationalSubsidyMerchantDiscountedPrice; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSearchCondition.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSearchCondition.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单 搜索条件 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @JsonInclude(Include.NON_EMPTY) public class OrderSearchCondition implements Serializable { private static final long serialVersionUID = 5492584333971883140L; /** 商品标题关键词 */ @JsonProperty("title") private String title; /** 商品编码 */ @JsonProperty("sku_code") private String skuCode; /** 收件人 */ @JsonProperty("user_name") private String userName; /** * 收件人电话 * @deprecated 当前字段已经废弃,请勿使用,如果原本填手机后四位,可正常使用,否则接口报错 */ @JsonProperty("tel_number") @Deprecated private String telNumber; /** * 收件人电话后四位 */ @JsonProperty("tel_number_last4") private String telNumberLast4; /** 选填,只搜一个订单时使用 */ @JsonProperty("order_id") private String orderId; /** 商家备注 */ @JsonProperty("merchant_notes") private String merchantNotes; /** 买家备注 */ @JsonProperty("customer_notes") private String customerNotes; /** 申请修改地址审核中 */ @JsonProperty("address_under_review") private Boolean addressUnderReview; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderPayInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderPayInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 支付信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderPayInfo implements Serializable { private static final long serialVersionUID = -5085386252699113948L; /** 预支付id */ @JsonProperty("payment_method") private Integer paymentMethod; /** 支付时间,秒级时间戳 */ @JsonProperty("pay_time") private Long payTime; /** 支付单号 */ @JsonProperty("transaction_id") private String transactionId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/QualityInsepctInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/QualityInsepctInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 质检信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class QualityInsepctInfo implements Serializable { private static final long serialVersionUID = 8109819414306253475L; /** 质检状态 */ @JsonProperty("inspect_status") private Integer inspectStatus; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderAgentInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderAgentInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 授权账号信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderAgentInfo implements Serializable { private static final long serialVersionUID = 6396067079343033841L; /** * 授权视频号id */ @JsonProperty("agent_finder_id") private String agentFinderId; /** * 授权视频号昵称 */ @JsonProperty("agent_finder_nickname") private String agentFinderNickname; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderProductInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderProductInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.AttrInfo; /** * 订单商品信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderProductInfo implements Serializable { private static final long serialVersionUID = -2193536732955185928L; /** * 商品spu id */ @JsonProperty("product_id") private String productId; /** * sku_id */ @JsonProperty("sku_id") private String skuId; /** * sku小图 */ @JsonProperty("thumb_img") private String thumbImg; /** * sku数量 */ @JsonProperty("sku_cnt") private Integer skuCnt; /** * 售卖价格(单位:分) */ @JsonProperty("sale_price") private Integer salePrice; /** * 商品标题 */ @JsonProperty("title") private String title; /** * 正在售后/退款流程中的 sku 数量 */ @JsonProperty("on_aftersale_sku_cnt") private Integer onAfterSaleSkuCnt; /** * 完成售后/退款的 sku 数量 */ @JsonProperty("finish_aftersale_sku_cnt") private Integer finishAfterSaleSkuCnt; /** * 商品编码 */ @JsonProperty("sku_code") private String skuCode; /** * 市场价格(单位:分) */ @JsonProperty("market_price") private Integer marketPrice; /** * sku属性 */ @JsonProperty("sku_attrs") private List<AttrInfo> skuAttrs; /** * sku实付价格 */ @JsonProperty("real_price") private Integer realPrice; /** * 商品外部spu id */ @JsonProperty("out_product_id") private String outProductId; /** * 商品外部sku id */ @JsonProperty("out_sku_id") private String outSkuId; /** * 是否有优惠金额,非必填,默认为false */ @JsonProperty("is_discounted") private Boolean isDiscounted; /** * 优惠后 sku 价格,非必填,is_discounted为 true 时有值 */ @JsonProperty("estimate_price") private Integer estimatePrice; /** * 是否修改过价格,非必填,默认为false */ @JsonProperty("is_change_price") private Boolean changePriced; /** * 改价后 sku 价格,非必填,is_change_price为 true 时有值 */ @JsonProperty("change_price") private Integer changePrice; /** * 区域库存id */ @JsonProperty("out_warehouse_id") private String outWarehouseId; /** * 商品发货信息 */ @JsonProperty("sku_deliver_info") private OrderSkuDeliverInfo skuDeliverInfo; /** * 商品额外服务信息 */ @JsonProperty("extra_service") private OrderProductExtraService extraService; /** * 是否使用了会员积分抵扣 */ @JsonProperty("use_deduction") private Boolean useDeduction; /** * 会员积分抵扣金额,单位为分 */ @JsonProperty("deduction_price") private Integer deductionPrice; /** * 商品优惠券信息,具体结构请参考OrderProductCouponInfo结构体,逐步替换 order.order_detail.coupon_info */ @JsonProperty("order_product_coupon_info_list") private List<OrderCouponInfo> orderProductCouponInfoList; /** * 商品发货时效,超时此时间未发货即为发货超时 */ @JsonProperty("delivery_deadline") private Long deliveryDeadline; /** * 商家优惠金额,单位为分 */ @JsonProperty("merchant_discounted_price") private Integer merchantDiscountedPrice; /** * 达人优惠金额,单位为分 */ @JsonProperty("finder_discounted_price") private Integer finderDiscountedPrice; /** * 是否赠品,非必填,赠品商品返回,1:是赠品 */ @JsonProperty("is_free_gift") private Boolean freeGift; /** * 订单内商品维度会员权益优惠金额,单位为分 */ @JsonProperty("vip_discounted_price") private Integer vipDiscountedPrice; /** * 商品常量编号,订单内商品唯一标识,下单后不会发生变化 */ @JsonProperty("product_unique_id") private String productUniqueId; /** * 更换sku信息 */ @JsonProperty("change_sku_info") private ChangeSkuInfo changeSkuInfo; /** * 赠品信息 */ @JsonProperty("free_gift_info") private FreeGiftInfo freeGiftInfo; /** * 订单内商品维度一起买优惠金额,单位为分 */ @JsonProperty("bulkbuy_discounted_price") private Integer bulkbuyDiscountedPrice; /** * 订单内商品维度国补优惠金额,单位为分 */ @JsonProperty("national_subsidy_discounted_price") private Integer nationalSubsidyDiscountedPrice; /** * 代发相关信息 */ @JsonProperty("dropship_info") private DropshipInfo dropshipInfo; /** * 是否闪购商品 */ @JsonProperty("is_flash_sale") private Boolean flashSale; /** * 订单内商品维度地方补贴优惠金额(商家出资),单位为分 */ @JsonProperty("national_subsidy_merchant_discounted_price") private Integer nationalSubsidyMerchantDiscountedPrice; /** * 订单内商品维度活动商家补贴,即参与平台补贴活动时商家通过活动报名价优惠的部分,单位为分 */ @JsonProperty("platform_activity_merchant_discounted_price") private Integer platformActivityMerchantDiscountedPrice; /** * 订单内商品维度平台券优惠金额,单位为分 */ @JsonProperty("cash_coupon_discounted_price") private Integer cashCouponDiscountedPrice; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderProductExtraService.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderProductExtraService.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 商品额外服务信息 * * @author <a href="https://github.com/qrpcode">北鹤M</a> */ @Data @NoArgsConstructor public class OrderProductExtraService implements Serializable { private static final long serialVersionUID = -8752053507170277156L; /** 7天无理由:0:不支持,1:支持 */ @JsonProperty("seven_day_return") private Integer sevenDayReturn; /** 商家运费险:0:不支持,1:支持 */ @JsonProperty("freight_insurance") private Integer freightInsurance; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DecodeAddressInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DecodeAddressInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.AddressInfo; /** * 解码地址数据 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class DecodeAddressInfo extends AddressInfo { /** 虚拟发货订单联系方式,在发货方式为无需快递(deliver_method=1)时返回 */ @JsonProperty("virtual_order_tel_number") private String virtualOrderTelNumber; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderExtInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderExtInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 订单备注信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderExtInfo implements Serializable { private static final long serialVersionUID = 4568097877621455429L; /** * 用户备注 */ @JsonProperty("customer_notes") private String customerNotes; /** * 商家备注 */ @JsonProperty("merchant_notes") private String merchantNotes; /** * 确认收货时间,包括用户主动确认收货和超时自动确认收货 */ @JsonProperty("confirm_receipt_time") private Long confirmReceiptTime; /** * 视频号id */ @JsonProperty("finder_id") private String finderId; /** * 直播id */ @JsonProperty("live_id") private String liveId; /** * 下单场景,枚举值见 {@link me.chanjar.weixin.channel.enums.OrderScene} */ @JsonProperty("order_scene") private Integer orderScene; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderAddressParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderAddressParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.AddressInfo; /** * 订单地址参数 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(Include.NON_NULL) public class OrderAddressParam implements Serializable { private static final long serialVersionUID = 2277618297276466650L; /** 订单id */ @JsonProperty("order_id") private String orderId; /** 地址信息 */ @JsonProperty("user_address") private AddressInfo userAddress; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/ChangeSkuInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/ChangeSkuInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 更换sku信息 */ @Data @NoArgsConstructor public class ChangeSkuInfo implements Serializable { private static final long serialVersionUID = 8783442929429377519L; /** * 发货前更换sku状态。3:等待商家处理,4:商家审核通过,5:商家拒绝,6:用户主动取消,7:超时默认拒绝 */ @JsonProperty("preshipment_change_sku_state") private Integer preshipmentChangeSkuState; /** * 原sku_id */ @JsonProperty("old_sku_id") private String oldSkuId; /** * 用户申请更换的sku_id */ @JsonProperty("new_sku_id") private String newSkuId; /** * 商家处理请求的最后时间,只有当前换款请求处于"等待商家处理"才有值 */ @JsonProperty("ddl_time_stamp") private Integer deadlineTimeStamp; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSkuDeliverInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSkuDeliverInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 商品发货信息 * * @author <a href="https://github.com/qrpcode">北鹤M</a> */ @Data @NoArgsConstructor public class OrderSkuDeliverInfo implements Serializable { private static final long serialVersionUID = 4075897806362929800L; /** 商品发货类型:0:现货,1:全款预售 */ @JsonProperty("stock_type") private Integer stockType; /** 预计发货时间(stock_type=1时返回该字段) */ @JsonProperty("predict_delivery_time") private String predictDeliveryTime; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSourceInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSourceInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单带货来源信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderSourceInfo implements Serializable { private static final long serialVersionUID = 3131907659419977296L; /** * sku_id */ @JsonProperty("sku_id") private String skuId; /** * 带货账号类型,1:视频号,2:公众号,3:小程序,4:企业微信,5:带货达人,6:服务号,1000:带货机构 */ @JsonProperty("account_type") private Integer accountType; /** * 带货账号id,取决于带货账号类型(分别为视频号id、公众号appid、小程序appid、企业微信id、带货达人appid、服务号appid、带货机构id) */ @JsonProperty("account_id") private String accountId; /** * 账号关联类型,0:关联账号,1:合作账号,2:授权号,100:达人带货,101:带货机构推广 */ @JsonProperty("sale_channel") private Integer saleChannel; /** * 带货账号昵称 */ @JsonProperty("account_nickname") private String accountNickname; /** * 带货内容类型,1:企微成员转发 */ @JsonProperty("content_type") private String contentType; /** * 带货内容id,取决于带货内容类型(企微成员user_id) */ @JsonProperty("content_id") private String contentId; /** * 自营推客推广的带货机构id */ @JsonProperty("promoter_head_supplier_id") private String promoterHeadSupplierId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/FreeGiftInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/FreeGiftInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; import java.util.List; /** * 赠品信息 */ @Data @NoArgsConstructor public class FreeGiftInfo implements Serializable { private static final long serialVersionUID = 2024061212345678901L; /** * 赠品对应的主品信息 */ @JsonProperty("main_product_list") private List<MainProductInfo> mainProductList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSearchParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSearchParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.StreamPageParam; /** * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @JsonInclude(Include.NON_EMPTY) public class OrderSearchParam extends StreamPageParam { private static final long serialVersionUID = 5737520097455135218L; /** 商品标题关键词 */ @JsonProperty("search_condition") private OrderSearchCondition searchCondition; /** 不填该参数:全部订单 0:没有正在售后的订单, 1:正在售后单数量大于等于1的订单 */ @JsonProperty("on_aftersale_order_exist") private Integer onAfterSaleOrderExist; /** 订单状态 {@link me.chanjar.weixin.channel.enums.WxOrderStatus} */ @JsonProperty("status") private Integer status; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/AfterSaleDetail.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/AfterSaleDetail.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; /** * 售后信息详情 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleDetail implements Serializable { private static final long serialVersionUID = -3786573982841041144L; /** 正在售后流程的售后单数 */ @JsonProperty("on_aftersale_order_cnt") private Integer onAfterSaleOrderCnt; /** 售后单列表 */ @JsonProperty("aftersale_order_list") private List<AfterSaleOrderInfo> afterSaleOrderList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderRefundInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderRefundInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单退款信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderRefundInfo implements Serializable { private static final long serialVersionUID = -7257910073388645919L; /** 退还运费金额,礼物订单(is_present=true)可能存在 */ @JsonProperty("refund_freight") private Integer refundFreight; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderCouponInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderCouponInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 卡券信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderCouponInfo implements Serializable { private static final long serialVersionUID = -2033350505767196339L; /** 用户优惠券id */ @JsonProperty("user_coupon_id") private String userCouponId; /** * 优惠券类型 * 1 商家优惠 * 2 达人优惠 * 3 平台优惠 * 4 国家补贴 * 5 地方补贴 */ @JsonProperty("coupon_type") private Integer couponType; /** 优惠金额,单位为分,该张优惠券、抵扣该商品的金额 */ @JsonProperty("discounted_price") private Integer discountedPrice; /** 优惠券id */ @JsonProperty("coupon_id") private String couponId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderCustomInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderCustomInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 商品定制信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderCustomInfo implements Serializable { private static final long serialVersionUID = 6681266835402157651L; /** 定制图片,custom_type=2时返回 */ @JsonProperty("custom_img_url") private String customImgUrl; /** 定制文字,custom_type=1时返回 */ @JsonProperty("custom_word") private String customWord; /** 定制类型,枚举值请参考CustomType枚举 */ @JsonProperty("custom_type") private Integer customType; /** 定制预览图片,开启了定制预览时返回 */ @JsonProperty("custom_preview_img_url") private String customPreviewImgUrl; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderRemarkParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderRemarkParam.java
package me.chanjar.weixin.channel.bean.order; 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 OrderRemarkParam implements Serializable { private static final long serialVersionUID = 2285714780419948468L; /** 订单id */ @JsonProperty("order_id") private String orderId; /** 备注内容 */ @JsonProperty("merchant_notes") private String merchantNotes; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderListResponse.java
package me.chanjar.weixin.channel.bean.order; 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://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class OrderListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -6198624448684807852L; /** 订单id列表 */ @JsonProperty("order_id_list") private List<String> ids; /** 分页参数,下一页请求回传 */ @JsonProperty("next_key") private String nextKey; /** 是否还有下一页,true:有下一页;false:已经结束,没有下一页。 */ @JsonProperty("has_more") private Boolean hasMore; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DeliveryUpdateParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DeliveryUpdateParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.delivery.FreightProductInfo; /** * 修改物流参数 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class DeliveryUpdateParam implements Serializable { /** 订单ID */ @JsonProperty("order_id") private String orderId; /** 物流公司ID */ @JsonProperty("delivery_list") private List<DeliveryInfo> deliveryList; @Data @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public static class DeliveryInfo implements Serializable { private static final long serialVersionUID = 1348000697768633889L; /** 快递单号 */ @JsonProperty("waybill_id") private String waybillId; /** 快递公司编码 */ @JsonProperty("delivery_id") private String deliveryId; /** 配送方式,枚举值见DeliveryType {@link me.chanjar.weixin.channel.enums.DeliveryType} */ @JsonProperty("deliver_type") private Integer deliverType; /** 包裹中商品信息 */ @JsonProperty("product_infos") private List<FreightProductInfo> productInfos; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DropshipInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DropshipInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 代发相关信息 */ @Data @NoArgsConstructor public class DropshipInfo implements Serializable { private static final long serialVersionUID = -4562618835611282016L; /** * 代发单号 */ @JsonProperty("ds_order_id") private Long dsOrderId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderInfoParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderInfoParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 获取订单详情参数 */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class OrderInfoParam implements Serializable { private static final long serialVersionUID = 42L; /** 订单ID */ @JsonProperty("order_id") private String orderId; /** * 用于商家提前测试订单脱敏效果,如果传true,即对订单进行脱敏,后期会默认对所有订单脱敏 */ @JsonProperty("encode_sensitive_info") private Boolean encodeSensitiveInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderDeliveryInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderDeliveryInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; /** * 物流信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderDeliveryInfo implements Serializable { private static final long serialVersionUID = -5348922760017557397L; /** 地址信息 */ @JsonProperty("address_info") private OrderAddressInfo addressInfo; /** 发货物流信息 */ @JsonProperty("delivery_product_info") private List<DeliveryProductInfo> deliveryProductInfos; /** 发货完成时间,秒级时间戳 */ @JsonProperty("ship_done_time") private Long shipDoneTime; /** 订单发货方式,0普通物流 1虚拟发货,由商品的同名字段决定 */ @JsonProperty("deliver_method") private Integer deliverMethod; /** 用户下单后申请修改收货地址,商家同意后该字段会覆盖订单地址信息 */ @JsonProperty("address_under_review") private OrderAddressInfo addressUnderReview; /** 修改地址申请时间,秒级时间戳 */ @JsonProperty("address_apply_time") private Long addressApplyTime; /** 电子面单代发时的订单密文 */ @JsonProperty("ewaybill_order_code") private String ewaybillOrderCode; /** 订单质检类型 2生鲜类质检 1珠宝玉石类质检 0不需要;不传递本字段表示不需要 */ @JsonProperty("quality_inspect_type") private String qualityInspectType; /** 质检信息 */ @JsonProperty("quality_inspect_info") private QualityInsepctInfo qualityInspectInfo; /** 虚拟商品充值账户信息 */ @JsonProperty("recharge_info") private RechargeInfo rechargeInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSharerInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSharerInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 分享信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderSharerInfo implements Serializable { private static final long serialVersionUID = 7183259072254660971L; /** * 分享员openid */ @JsonProperty("sharer_openid") private String sharerOpenid; /** * 分享员unionid */ @JsonProperty("sharer_unionid") private String sharerUnionid; /** * 分享员类型,0:普通分享员,1:店铺分享员 */ @JsonProperty("sharer_type") private Integer sharerType; /** * 分享场景 {@link me.chanjar.weixin.channel.enums.ShareScene} */ @JsonProperty("share_scene") private Integer shareScene; /** * 分享员数据是否已经解析完成【1:解析完成 0:解析中】 */ @JsonProperty("handling_progress") private Integer handlingProgress; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/ChangeOrderInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/ChangeOrderInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单修改信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class ChangeOrderInfo implements Serializable { private static final long serialVersionUID = 4932726847720452340L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 商品sku */ @JsonProperty("sku_id") private String skuId; /** 订单中该商品修改后的总价,以分为单位 */ @JsonProperty("change_price") private String changePrice; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/VirtualNumberInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/VirtualNumberInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 虚拟号信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class VirtualNumberInfo implements Serializable { private static final long serialVersionUID = -372834823737476644L; /** 虚拟号 */ @JsonProperty("virtual_number") private String virtualNumber; /** 分机号 */ @JsonProperty("extension") private String extension; /** 过期时间戳 */ @JsonProperty("expiration") private Long expiration; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/RechargeInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/RechargeInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 虚拟商品充值账户信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class RechargeInfo implements Serializable { /** 虚拟商品充值账号,当account_type=qq或phone_number或mail的时候返回 */ @JsonProperty("account_no") private String accountNo; /** 账号充值类型,可选项: weixin(微信号),qq(qq),phone_number(电话号码),mail(邮箱) */ @JsonProperty("account_type") private String accountType; /** 当account_type="weixin"的时候返回 */ @JsonProperty("wx_openid") private String wxOpenId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 视频号小店订单 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderInfo implements Serializable { private static final long serialVersionUID = -4562618835611282016L; /** 订单号 */ @JsonProperty("order_id") protected String orderId; /** 订单状态,枚举值见 {@link me.chanjar.weixin.channel.enums.WxOrderStatus} */ @JsonProperty("status") protected Integer status; /** 买家身份标识 */ @JsonProperty("openid") protected String openid; /** union id */ @JsonProperty("unionid") protected String unionid; /** 订单详细数据信息 */ @JsonProperty("order_detail") protected OrderDetailInfo orderDetail; /** 售后信息 */ @JsonProperty("aftersale_detail") protected AfterSaleDetail afterSaleDetail; /** 是否为礼物订单 */ @JsonProperty("is_present") private Boolean present; /** 礼物订单ID */ @JsonProperty("present_order_id_str") private String presentOrderId; /** 礼物订单留言 */ @JsonProperty("present_note") private String presentNote; /** 礼物订单赠送者openid */ @JsonProperty("present_giver_openid") private String presentGiverOpenid; /** 礼物订单赠送者unionid */ @JsonProperty("present_giver_unionid") private String presentGiverUnionid; /** 创建时间 秒级时间戳 */ @JsonProperty("create_time") protected Integer createTime; /** 更新时间 秒级时间戳 */ @JsonProperty("update_time") protected Integer updateTime; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderInfoResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderInfoResponse.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 订单信息响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class OrderInfoResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 935829924760021624L; /** 订单信息 */ @JsonProperty("order") private OrderInfo order; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSettleInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSettleInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 结算信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderSettleInfo implements Serializable { private static final long serialVersionUID = 2140632631448343656L; /** * 预计技术服务费(单位为分) */ @JsonProperty("predict_commission_fee") private Integer predictCommissionFee; /** * 实际技术服务费(单位为分)(未结算时本字段为空) */ @JsonProperty("commission_fee") private Integer commissionFee; /** * 预计人气卡返佣金额,单位为分(未发起结算时本字段为空) */ @JsonProperty("predict_wecoin_commission") private Integer predictWecoinCommission; /** * 实际人气卡返佣金额,单位为分(未结算时本字段为空) */ @JsonProperty("wecoin_commission") private Integer wecoinCommission; /** * 商家结算时间 */ @JsonProperty("settle_time") private Long settleTime; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderAddressInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderAddressInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.AddressInfo; /** * 地址信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class OrderAddressInfo extends AddressInfo { private static final long serialVersionUID = 3062707865189774795L; /** 虚拟发货订单联系方式(deliver_method=1时返回) */ @JsonProperty("virtual_order_tel_number") private String virtualOrderTelNumber; /** * 额外的联系方式信息(虚拟号码相关),具体结构请参考TelNumberExtInfo结构体 */ @JsonProperty("tel_number_ext_info") private TelNumberExtInfo telNumberExtInfo; /** * 0:不使用虚拟号码,1:使用虚拟号码 */ @JsonProperty("use_tel_number") private Integer useTelNumber; /** * 标识当前店铺下一个唯一的用户收货地址 */ @JsonProperty("hash_code") private String hashCode; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/TelNumberExtInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/TelNumberExtInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; /** * 联系方式信息 * * @author <a href="https://github.com/imyzt">imyzt</a> */ @Data public class TelNumberExtInfo { /** * 脱敏手机号 */ @JsonProperty("real_tel_number") private String realTelNumber; /** * 完整的虚拟号码 */ @JsonProperty("virtual_tel_number") private String virtualTelNumber; /** * 主动兑换的虚拟号码过期时间 */ @JsonProperty("virtual_tel_expire_time") private Long virtualTelExpireTime; /** * 主动兑换虚拟号码次数 */ @JsonProperty("get_virtual_tel_cnt") private Long getVirtualTelCnt; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderListParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.StreamPageParam; import me.chanjar.weixin.channel.bean.base.TimeRange; /** * 获取订单列表参数 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) @JsonInclude(Include.NON_NULL) public class OrderListParam extends StreamPageParam { private static final long serialVersionUID = 3780097459964746890L; /** 订单创建时间范围 */ @JsonProperty("create_time_range") private TimeRange createTimeRange; /** 订单更新时间范围 */ @JsonProperty("update_time_range") private TimeRange updateTimeRange; /** 订单状态,枚举值见 {@link me.chanjar.weixin.channel.enums.WxOrderStatus} */ @JsonProperty("status") private Integer status; /** 买家身份标识 */ @JsonProperty("openid") private Integer openid; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderCommissionInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderCommissionInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 分佣信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderCommissionInfo implements Serializable { private static final long serialVersionUID = -3046852309683467272L; /** 商品skuid */ @JsonProperty("sku_id") private String skuId; /** 分账方昵称 */ @JsonProperty("nickname") private String nickname; /** 分账方类型,0:达人,1:团长 */ @JsonProperty("type") private Integer type; /** 分账状态, 1:未结算,2:已结算 */ @JsonProperty("status") private Integer status; /** 分账金额 */ @JsonProperty("amount") private Integer amount; /** 达人视频号id */ @JsonProperty("finder_id") private String finderId; /** 达人openfinderid */ @JsonProperty("openfinderid") private String openFinderId; /** 新带货平台 id */ @JsonProperty("talent_id") private String talentId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderDetailInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderDetailInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单详细数据 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderDetailInfo implements Serializable { private static final long serialVersionUID = 3916307299998005676L; /** 商品列表 */ @JsonProperty("product_infos") private List<OrderProductInfo> productInfos; /** 支付信息 */ @JsonProperty("pay_info") private OrderPayInfo payInfo; /** 价格信息 */ @JsonProperty("price_info") private OrderPriceInfo priceInfo; /** 配送信息 */ @JsonProperty("delivery_info") private OrderDeliveryInfo deliveryInfo; /** 优惠券信息 */ @JsonProperty("coupon_info") private OrderCouponInfo couponInfo; /** 额外信息 */ @JsonProperty("ext_info") private OrderExtInfo extInfo; /** 分佣信息 */ @JsonProperty("commission_infos") private List<OrderCommissionInfo> commissionInfos; /** 分享信息 */ @JsonProperty("sharer_info") private OrderSharerInfo sharerInfo; /** 结算信息 */ @JsonProperty("settle_info") private OrderSettleInfo settleInfo; /** 分享员信息 */ @JsonProperty("sku_sharer_infos") private List<OrderSkuShareInfo> skuSharerInfos; /** 授权账号信息 */ @JsonProperty("agent_info") private OrderAgentInfo agentInfo; /** 订单来源信息 */ @JsonProperty("source_infos") private List<OrderSourceInfo> sourceInfos; /** 订单退款信息 */ @JsonProperty("refund_info") private OrderSourceInfo refundInfo; /** 订单代写商品信息 */ @JsonProperty("greeting_card_info") private OrderGreetingCardInfo greetingCardInfo; /** 商品定制信息 */ @JsonProperty("custom_info") private OrderCustomInfo customInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DecodeSensitiveInfoResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/DecodeSensitiveInfoResponse.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 解码订单包含的敏感数据响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class DecodeSensitiveInfoResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 935829924760021624L; /** 收货信息 */ @JsonProperty("address_info") private DecodeAddressInfo addressInfo; /** 虚拟号信息 */ @JsonProperty("virtual_number_info") private VirtualNumberInfo virtualNumberInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/VirtualTelNumberResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/VirtualTelNumberResponse.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 兑换虚拟号 返回结果 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class VirtualTelNumberResponse extends WxChannelBaseResponse { /** 虚拟号码 */ @JsonProperty("virtual_tel_number") private String virtualTelNumber; /** 虚拟号码过期时间 */ @JsonProperty("virtual_tel_expire_time") private Long virtualTelExpireTime; /** 兑换虚拟号码次数 */ @JsonProperty("get_virtual_tel_cnt") private Integer getVirtualTelCnt; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderIdParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderIdParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单id参数 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(Include.NON_NULL) public class OrderIdParam implements Serializable { private static final long serialVersionUID = -8616582197963359789L; /** 订单ID */ @JsonProperty("order_id") private String orderId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/MainProductInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/MainProductInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 赠品对应的主品信息 */ @Data @NoArgsConstructor public class MainProductInfo implements Serializable { private static final long serialVersionUID = 2024061212345678901L; /** * 赠品数量 */ @JsonProperty("gift_cnt") private Integer giftCnt; /** * 活动id */ @JsonProperty("task_id") private Integer taskId; /** * 商品id */ @JsonProperty("product_id") private Integer productId; /** * 主品sku_id */ @JsonProperty("sku_id") private Integer skuId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderGreetingCardInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderGreetingCardInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 订单商品贺卡信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class OrderGreetingCardInfo implements Serializable { private static final long serialVersionUID = -6391443179945240242L; /** 贺卡落款,用户选填 */ @JsonProperty("giver_name") private String giverName; /** 贺卡称谓,用户选填 */ @JsonProperty("receiver_name") private String receiverName; /** 贺卡内容,用户必填 */ @JsonProperty("greeting_message") private String greetingMessage; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderPriceParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderPriceParam.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; /** * 订单价格参数 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @JsonInclude(Include.NON_NULL) public class OrderPriceParam implements Serializable { private static final long serialVersionUID = -7925819981481556218L; /** 订单id */ @JsonProperty("order_id") private String orderId; /** 是否修改运费 */ @JsonProperty("change_express") private Boolean changeExpress; /** 修改后的运费价格(change_express=true时必填),以分为单位 */ @JsonProperty("express_fee") private Integer expressFee; /** 改价列表 */ @JsonProperty("change_order_infos") private List<ChangeOrderInfo> changeOrderInfos; public OrderPriceParam() { } public OrderPriceParam(String orderId, Integer expressFee, List<ChangeOrderInfo> changeOrderInfos) { this.orderId = orderId; // expressFee不为空时,表示修改运费 this.changeExpress = (expressFee != null); this.expressFee = expressFee; this.changeOrderInfos = changeOrderInfos; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/AfterSaleOrderInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/AfterSaleOrderInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 售后信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleOrderInfo implements Serializable { private static final long serialVersionUID = 3938545222231426455L; /** 售后单ID */ @JsonProperty("aftersale_order_id") private String afterSaleOrderId; public String getAfterSaleOrderId() { return afterSaleOrderId; } public void setAfterSaleOrderId(String afterSaleOrderId) { this.afterSaleOrderId = afterSaleOrderId; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSkuShareInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/OrderSkuShareInfo.java
package me.chanjar.weixin.channel.bean.order; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * Sku层分享信息 * * @author <a href="https://github.com/qrpcode">北鹤M</a> */ @Data @NoArgsConstructor public class OrderSkuShareInfo implements Serializable { private static final long serialVersionUID = 705312408112124476L; /** 分享员openid */ @JsonProperty("sharer_openid") private String sharerOpenid; /** 分享员unionid */ @JsonProperty("sharer_unionid") private String sharerUnionid; /** 分享员类型,0:普通分享员,1:店铺分享员 */ @JsonProperty("sharer_type") private Integer sharerType; /** 分享场景 {@link me.chanjar.weixin.channel.enums.ShareScene} */ @JsonProperty("share_scene") private Integer shareScene; /** 商品skuid */ @JsonProperty("sku_id") private String skuId; /** 是否来自企微分享 */ @JsonProperty("from_wecom") private Boolean fromWecom; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/token/StableTokenParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/token/StableTokenParam.java
package me.chanjar.weixin.channel.bean.token; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 稳定版access_token,请求参数 * * @author <a href="https://github.com/asushiye">asushiye</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class StableTokenParam implements Serializable { private static final long serialVersionUID = 6849364823232834171L; @JsonProperty("grant_type") private String grantType; @JsonProperty("appid") private String appId; @JsonProperty("secret") private String secret; @JsonProperty("force_refresh") private Boolean forceRefresh; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerSearchResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerSearchResponse.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 分享员绑定响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class SharerSearchResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -5346019069466917659L; /** 分享员openid */ @JsonProperty("openid") private String openid; /** 分享员unionid */ @JsonProperty("unionid") private String unionid; /** 分享员openid */ @JsonProperty("nickname") private String nickname; /** 绑定时间 */ @JsonProperty("bind_time") private Long bindTime; /** 分享员类型 {@link me.chanjar.weixin.channel.enums.SharerType} */ @JsonProperty("sharer_type") private Integer sharerType; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerListParam.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import me.chanjar.weixin.channel.bean.base.PageParam; /** * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @EqualsAndHashCode(callSuper = true) @JsonInclude(Include.NON_NULL) public class SharerListParam extends PageParam { private static final long serialVersionUID = -2454284952706596246L; /** 分享员类型 {@link me.chanjar.weixin.channel.enums.SharerType} */ @JsonProperty("sharer_type") private Integer sharerType; public SharerListParam() { } public SharerListParam(Integer page, Integer pageSize, Integer sharerType) { super(page, pageSize); this.sharerType = sharerType; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerBindResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerBindResponse.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 分享员绑定响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class SharerBindResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 7078787380791500161L; /** 邀请二维码的图片二进制base64编码,3天有效 */ @JsonProperty("qrcode_img_base64") private String qrcodeImgBase64; public String getQrcodeImgBase64() { return qrcodeImgBase64; } public void setQrcodeImgBase64(String qrcodeImgBase64) { this.qrcodeImgBase64 = qrcodeImgBase64; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerOrder.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerOrder.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 分享员订单 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class SharerOrder implements Serializable { private static final long serialVersionUID = 1528673402572025670L; /** * 订单号 */ @JsonProperty("order_id") private String orderId; /** * 分享场景 {@link me.chanjar.weixin.channel.enums.ShareScene} */ @JsonProperty("share_scene") private Integer sharerScene; /** * 分享员openid */ @JsonProperty("sharer_openid") private String sharerOpenid; /** * 分享员类型 {@link me.chanjar.weixin.channel.enums.SharerType} */ @JsonProperty("sharer_type") private Integer sharerType; /** * 商品sku_id */ @JsonProperty("sku_id") private String skuId; /** * 商品唯一id */ @JsonProperty("product_id") private String productId; /** * 是否从企微分享 */ @JsonProperty("from_wecom") private Boolean fromWxWork; /** * 视频号场景信息 */ @JsonProperty("finder_scene_info") private FinderSceneInfo sceneInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerOrderParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerOrderParam.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.PageParam; /** * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) @JsonInclude(Include.NON_NULL) public class SharerOrderParam extends PageParam { private static final long serialVersionUID = 5240085870008898601L; /** 分享员openid */ @JsonProperty("openid") private String openid; /** 分享场景 */ @JsonProperty("share_scene") private Integer shareScene; /** 订单创建开始时间 */ @JsonProperty("start_time") private Long startTime; /** 订单创建结束时间 */ @JsonProperty("end_time") private Long endTime; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/FinderSceneInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/FinderSceneInfo.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 视频号场景信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class FinderSceneInfo implements Serializable { private static final long serialVersionUID = 5298261857489231549L; /** 视频号唯一标识 */ @JsonProperty("promoter_id") private String promoterId; /** 视频号昵称 */ @JsonProperty("finder_nickname") private String finderNickname; /** 直播间唯一标识 */ @JsonProperty("live_export_id") private String liveExportId; /** 短视频唯一标识 */ @JsonProperty("video_export_id") private String videoExportId; /** 短视频标题 */ @JsonProperty("video_title") private String videoTitle; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerOrderResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerOrderResponse.java
package me.chanjar.weixin.channel.bean.sharer; 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://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class SharerOrderResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 2807417719466178508L; /** 分享员订单 */ @JsonProperty("order_list") private List<SharerOrder> list; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerUnbindResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerUnbindResponse.java
package me.chanjar.weixin.channel.bean.sharer; 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://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class SharerUnbindResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -2395560383862569445L; /** 成功列表 */ @JsonProperty("success_openid") private List<String> successList; /** 失败列表,可重试 */ @JsonProperty("fail_openid") private List<String> failList; /** 拒绝列表,不可重试(openid错误,未到解绑时间等) */ @JsonProperty("refuse_openid") private List<String> refuseList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerInfoResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerInfoResponse.java
package me.chanjar.weixin.channel.bean.sharer; 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://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class SharerInfoResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 1090517907546557929L; /** 分享员信息 */ @JsonProperty("sharer_info_list") private List<SharerInfo> list; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerSearchParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerSearchParam.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; /** * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @JsonInclude(Include.NON_NULL) public class SharerSearchParam implements Serializable { private static final long serialVersionUID = -6763899740755735718L; /** 分享员openid */ @JsonProperty("openid") private String openid; /** 微信号 */ @JsonProperty("username") private String username; public SharerSearchParam() { } public SharerSearchParam(String openid, String username) { this.openid = openid; this.username = username; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerInfo.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 分享员信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class SharerInfo implements Serializable { private static final long serialVersionUID = -4373597470611742887L; /** 分享员openid */ @JsonProperty("openid") private String openid; /** 分享员unionid */ @JsonProperty("unionid") private String unionid; /** 分享员openid */ @JsonProperty("nickname") private String nickname; /** 绑定时间 */ @JsonProperty("bind_time") private Long bindTime; /** 分享员类型 {@link me.chanjar.weixin.channel.enums.SharerType} */ @JsonProperty("sharer_type") private Integer sharerType; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerUnbindParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/sharer/SharerUnbindParam.java
package me.chanjar.weixin.channel.bean.sharer; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(Include.NON_NULL) public class SharerUnbindParam implements Serializable { private static final long serialVersionUID = -4515654492511136037L; /** openid列表 */ @JsonProperty("openid_list") private List<String> openIds; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleListParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; 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 @JsonInclude(Include.NON_NULL) public class AfterSaleListParam implements Serializable { private static final long serialVersionUID = -103549981452112069L; /** 订单创建启始时间 unix时间戳 */ @JsonProperty("begin_create_time") private Long beginCreateTime; /** 订单创建结束时间,end_create_time减去begin_create_time不得大于24小时 unix时间戳 */ @JsonProperty("end_create_time") private Long endCreateTime; /** 售后单更新起始时间 */ @JsonProperty("begin_update_time") private Long beginUpdateTime; /** 售后单更新结束时间,end_update_time减去begin_update_time不得大于24小时 */ @JsonProperty("end_update_time") private Long endUpdateTime; /** 翻页参数,从第二页开始传,来源于上一页的返回值 */ @JsonProperty("next_key") private String nextKey; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleReturnParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleReturnParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import me.chanjar.weixin.channel.bean.base.AddressInfo; /** * 退货信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data public class AfterSaleReturnParam implements Serializable { private static final long serialVersionUID = -1101993925465293521L; /** 微信侧售后单号 */ @JsonProperty("aftersale_id") private Long afterSaleId; /** 外部售后单号,和aftersale_id二选一 */ @JsonProperty("out_aftersale_id") private String outAfterSaleId; /** 商家收货地址 */ @JsonProperty("address_info") private AddressInfo addressInfo; public AfterSaleReturnParam() { } public AfterSaleReturnParam(Long afterSaleId, String outAfterSaleId) { this.outAfterSaleId = outAfterSaleId; this.afterSaleId = afterSaleId; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/RefundInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/RefundInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 退款信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class RefundInfo implements Serializable { private static final long serialVersionUID = -6994243947898889309L; /** 退款金额(分) */ @JsonProperty("amount") private Integer amount; /** 标明售后单退款直接原因, 枚举值详情请参考 {@link me.chanjar.weixin.channel.enums.RefundReason} */ @JsonProperty("refund_reason") private Integer refundReason; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 售后单信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleInfo implements Serializable { private static final long serialVersionUID = 6595670817781635247L; /** 售后单号 */ @JsonProperty("after_sale_order_id") private String afterSaleOrderId; /** 售后状态 {@link me.chanjar.weixin.channel.enums.AfterSaleStatus} */ @JsonProperty("status") private String status; /** 订单id */ @JsonProperty("order_id") private String orderId; /** 买家身份标识 */ @JsonProperty("openid") private String openid; /** 买家在开放平台的唯一标识符,若当前视频号小店已绑定到微信开放平台帐号下会返回 */ @JsonProperty("unionid") private String unionid; /** 售后相关商品信息 */ @JsonProperty("product_info") private AfterSaleProductInfo productInfo; /** 售后详情 */ @JsonProperty("details") private AfterSaleDetail details; /** 退款详情 */ @JsonProperty("refund_info") private RefundInfo refundInfo; /** 用户退货信息 */ @JsonProperty("return_info") private ReturnInfo returnInfo; /** 商家上传的信息 */ @JsonProperty("merchant_upload_info") private MerchantUploadInfo merchantUploadInfo; /** 创建时间 时间戳 秒 */ @JsonProperty("create_time") private Long createTime; /** 更新时间 时间戳 秒 */ @JsonProperty("update_time") private Long updateTime; /** 退款原因(后续新增的原因将不再有字面含义,请参考reason_text) */ @JsonProperty("reason") private String reason; /** 退款原因解释 */ @JsonProperty("reason_text") private String reasonText; /** 退款结果 */ @JsonProperty("refund_resp") private RefundResp refundResp; /** 售后类型。REFUND:退款;RETURN:退货退款 */ @JsonProperty("type") private String type; /** 纠纷id,该字段可用于获取纠纷信息 */ @JsonProperty("complaint_id") private String complaintId; /** 仅在待商家审核退款退货申请或收货期间返回,表示操作剩余时间(秒数)*/ @JsonProperty("deadline") private Long deadline; /** 售后换货商品信息 */ @JsonProperty("exchange_product_info") private AfterSaleExchangeProductInfo exchangeProductInfo; /** 售后换货物流信息 */ @JsonProperty("exchange_delivery_info") private AfterSaleExchangeDeliveryInfo exchangeDeliveryInfo; /** 售后换货虚拟号码信息 */ @JsonProperty("virtual_tel_num_info") private AfterSaleVirtualNumberInfo virtualTelNumInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleReason.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleReason.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 全量售后原因 * * @author lizhengwu * @date 2024/7/24 */ @Data @NoArgsConstructor public class AfterSaleReason implements Serializable { private static final long serialVersionUID = -3674527884494606230L; /** * 售后原因枚举 */ @JsonProperty("reason") private Integer reason; /** * 售后原因说明 */ @JsonProperty("reason_text") private String reasonText; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/RefundResp.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/RefundResp.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 退款结果 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class RefundResp implements Serializable { private static final long serialVersionUID = 6549707043779644156L; /** code */ @JsonProperty("code") private String code; /** ret */ @JsonProperty("ret") private Integer ret; /** message */ @JsonProperty("message") private String message; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectReasonResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectReasonResponse.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; import java.util.List; /** * 售后原因 * * @author lizhengwu */ @Data @NoArgsConstructor @EqualsAndHashCode public class AfterSaleRejectReasonResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -7946679037747710613L; /** * 售后原因列表 */ @JsonProperty("reject_reason_list") private List<AfterSaleRejectReason> rejectReasonList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleDetail.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleDetail.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; /** * 售后详情 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleDetail implements Serializable { private static final long serialVersionUID = -8130659179770831047L; /** 售后描述 */ @JsonProperty("desc") private String desc; /** 是否已经收到货 */ @JsonProperty("receive_product") private Boolean receiveProduct; /** 是否已经收到货 */ @JsonProperty("cancel_time") private Long cancelTime; /** 举证图片media_id列表,根据mediaid获取文件内容接口 */ @JsonProperty("prove_imgs") private List<String> proveImgs; /** 联系电话 */ @JsonProperty("tel_number") private String telNumber; /** 举证图片media_id列表,根据mediaid获取文件内容接口 */ @JsonProperty("media_id_list") private List<String> mediaIdList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleInfoResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleInfoResponse.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 售后单 响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class AfterSaleInfoResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -752661975153491902L; /** 售后单 */ @JsonProperty("after_sale_order") private AfterSaleInfo info; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleAcceptParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleAcceptParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; /** * 售后单同意信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @JsonInclude(Include.NON_NULL) public class AfterSaleAcceptParam extends AfterSaleIdParam { private static final long serialVersionUID = -4352801757159074950L; /** 同意退货时传入地址id */ @JsonProperty("address_id") private String addressId; /** 针对退货退款同意售后的阶段: 1. 同意退货退款,并通知用户退货; 2. 确认收到货并退款给用户。 如果不填则将根据当前的售后单状态自动选择相应操作。对于仅退款的情况,由于只存在一种同意的场景,无需填写此字段。*/ @JsonProperty("accept_type") private Integer acceptType; public AfterSaleAcceptParam() { } public AfterSaleAcceptParam(String afterSaleOrderId, String addressId) { super(afterSaleOrderId); this.addressId = addressId; } public AfterSaleAcceptParam(String afterSaleOrderId, String addressId, Integer acceptType) { super(afterSaleOrderId); this.addressId = addressId; this.acceptType = acceptType; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; /** * 售后单拒绝信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @JsonInclude(Include.NON_NULL) public class AfterSaleRejectParam extends AfterSaleIdParam { private static final long serialVersionUID = -7507483859864253314L; /** * 拒绝原因 */ @JsonProperty("reject_reason") private String rejectReason; /** * 拒绝原因枚举值 */ @JsonProperty("reject_reason_type") private Integer rejectReasonType; public AfterSaleRejectParam() { } public AfterSaleRejectParam(String afterSaleOrderId, String rejectReason) { super(afterSaleOrderId); this.rejectReason = rejectReason; } public AfterSaleRejectParam(String afterSaleOrderId, String rejectReason, Integer rejectReasonType) { super(afterSaleOrderId); this.rejectReason = rejectReason; this.rejectReasonType = rejectReasonType; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleListResponse.java
package me.chanjar.weixin.channel.bean.after; 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://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class AfterSaleListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 5033313416948732123L; /** 售后单号列表 */ @JsonProperty("after_sale_order_id_list") private List<String> ids; /** 翻页参数 */ @JsonProperty("next_key") private String nextKey; /** 是否还有数据 */ @JsonProperty("has_more") private Boolean hasMore; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleExchangeDeliveryInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleExchangeDeliveryInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.AddressInfo; /** * 换货类型的发货物流信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleExchangeDeliveryInfo implements Serializable { private static final long serialVersionUID = 3039216368034112038L; /** 快递单号 */ @JsonProperty("waybill_id") private String waybillId; /** 物流公司id */ @JsonProperty("delivery_id") private String deliveryId; /** 物流公司名称 */ @JsonProperty("delivery_name") private String deliveryName; /** 地址信息 */ @JsonProperty("address_info") private AddressInfo addressInfo; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleExchangeProductInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleExchangeProductInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 换货商品信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleExchangeProductInfo implements Serializable { private static final long serialVersionUID = -1341436607011117854L; /** 商品spuid */ @JsonProperty("product_id") private String productId; /** 旧商品skuid */ @JsonProperty("old_sku_id") private String oldSkuId; /** 新商品skuid */ @JsonProperty("new_sku_id") private String newSkuId; /** 数量 */ @JsonProperty("product_cnt") private String productCnt; /** 旧商品价格 */ @JsonProperty("old_sku_price") private Integer oldSkuPrice; /** 新商品价格 */ @JsonProperty("new_sku_price") private Integer newSkuPrice; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleReasonResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleReasonResponse.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; import java.util.List; /** * 售后原因 * * * @author lizhengwu */ @Data @NoArgsConstructor @EqualsAndHashCode public class AfterSaleReasonResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -580378623915041396L; @JsonProperty("reason_list") private List<AfterSaleReason> reasonList; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleMerchantUpdateParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleMerchantUpdateParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import java.util.List; /** * 售后单商家协商信息 * * @author <a href="https://gitee.com/cchengg">Chu</a> */ @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class AfterSaleMerchantUpdateParam extends AfterSaleIdParam { private static final long serialVersionUID = -3672834150982780L; /** 协商修改把售后单修改成该售后类型。1:退款;2:退货退款*/ @JsonProperty("type") private Integer type; /** 金额(单位:分)*/ @JsonProperty("amount") private Integer amount; /** 协商描述*/ @JsonProperty("merchant_update_desc") private String merchantUpdateDesc; /** 协商原因*/ @JsonProperty("update_reason_type") private Integer updateReasonType; /** 1:已协商一致,邀请买家取消售后; 2:邀请买家核实与补充凭证; 3:修改买家售后申请*/ @JsonProperty("merchant_update_type") private Integer merchantUpdateType; /** 协商凭证id列表,可使用图片上传接口获取media_id(数据类型填0),当update_reason_type对应的need_image为1时必填*/ @JsonProperty("media_ids") private List<String> mediaIds; public AfterSaleMerchantUpdateParam() { } public AfterSaleMerchantUpdateParam(String afterSaleOrderId, Integer type, Integer updateReasonType, Integer merchantUpdateType , Integer amount, String merchantUpdateDesc, List<String> mediaIds) { super(afterSaleOrderId); this.type = type; this.updateReasonType = updateReasonType; this.merchantUpdateType = merchantUpdateType; this.amount = amount; this.merchantUpdateDesc = merchantUpdateDesc; this.mediaIds = mediaIds; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/RefundEvidenceParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/RefundEvidenceParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 退款凭证信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class RefundEvidenceParam implements Serializable { private static final long serialVersionUID = 2117305897849528009L; /** 售后单号 */ @JsonProperty("after_sale_order_id") private String afterSaleOrderId; /** 描述 */ @JsonProperty("desc") private String desc; /** 凭证图片列表 */ @JsonProperty("refund_certificates") private List<String> certificates; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/MerchantUploadInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/MerchantUploadInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; /** * 商家上传的信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class MerchantUploadInfo implements Serializable { private static final long serialVersionUID = 373513419356603563L; /** 拒绝原因 */ @JsonProperty("reject_reason") private String rejectReason; /** 退款凭证 */ @JsonProperty("refund_certificates") private List<String> refundCertificates; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/ReturnInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/ReturnInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 用户退货信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class ReturnInfo implements Serializable { private static final long serialVersionUID = 1643844664701376892L; /** 快递单号 */ @JsonProperty("waybill_id") private String waybillId; /** 物流公司id */ @JsonProperty("delivery_id") private String deliveryId; /** 物流公司名称 */ @JsonProperty("delivery_name") private String deliveryName; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleAcceptExchangeReshipParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleAcceptExchangeReshipParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; /** * 售后单换货发货信息 * * @author <a href="https://gitee.com/cchengg">Chu</a> */ @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class AfterSaleAcceptExchangeReshipParam extends AfterSaleIdParam { private static final long serialVersionUID = -7946679037747710613L; /** 快递单号*/ @JsonProperty("waybill_id") private String waybillId; /** 快递公司id,通过获取快递公司列表接口获得,非主流快递公司可以填OTHER*/ @JsonProperty("delivery_id") private String deliveryId; public AfterSaleAcceptExchangeReshipParam() { } public AfterSaleAcceptExchangeReshipParam(String afterSaleOrderId, String waybillId, String deliveryId) { super(afterSaleOrderId); this.waybillId = waybillId; this.deliveryId = deliveryId; } }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleIdParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleIdParam.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 售后单id信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(Include.NON_NULL) public class AfterSaleIdParam implements Serializable { private static final long serialVersionUID = 4974332291476116540L; /** 售后单号 */ @JsonProperty("after_sale_order_id") private String afterSaleOrderId; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false
binarywang/WxJava
https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleVirtualNumberInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleVirtualNumberInfo.java
package me.chanjar.weixin.channel.bean.after; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; /** * 虚拟号码信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class AfterSaleVirtualNumberInfo implements Serializable { private static final long serialVersionUID = -5756618937333859985L; /** 虚拟号码 */ @JsonProperty("virtual_tel_number") private String virtualTelNumber; /** 虚拟号码过期时间 */ @JsonProperty("virtual_tel_expire_time") private Long virtualTelExpireTime; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false