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/league/DescInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/DescInfo.java
package me.chanjar.weixin.channel.bean.league; 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 DescInfo implements Serializable { private static final long serialVersionUID = 5319244341160446531L; /** 商品详情图片(最多20张)。如果添加时没录入,回包可能不包含该字段 */ @JsonProperty("imgs") private List<String> imgs; /** 商品详情文字。如果添加时没录入,回包可能不包含该字 */ @JsonProperty("desc") private String desc; }
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/league/CatInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/CatInfo.java
package me.chanjar.weixin.channel.bean.league; 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 CatInfo implements Serializable { private static final long serialVersionUID = 8449223922139383888L; /** 类目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/league/ExpressInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/ExpressInfo.java
package me.chanjar.weixin.channel.bean.league; 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 ExpressInfo implements Serializable { private static final long serialVersionUID = -4604691645808459334L; /** 发货时间期限 */ @JsonProperty("send_time") private String sendTime; /** 发货地址 */ @JsonProperty("address_info") private AddressInfo addressInfo; /** 计费方式:FREE:包邮CONDITION_FREE:条件包邮NO_FREE:不包邮 */ @JsonProperty("shipping_method") private String shippingMethod; }
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/league/product/ProductDetailResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductDetailResponse.java
package me.chanjar.weixin.channel.bean.league.product; 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.WxChannelBaseResponse; /** * 商品详情响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class ProductDetailResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 5306524707144232861L; /** 推广商品信息 */ @JsonProperty("item") private Item item; @Data @NoArgsConstructor public static class Item implements Serializable { private static final long serialVersionUID = 9112142704638318861L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 商品推广类别 1普通推广商品 2定向推广商品 3专属推广商品 */ @JsonProperty("type") private Integer type; /** 商品推广状态 1已上架推广 2已下架推广 4已删除 5未达到准入标准 10待生效 */ @JsonProperty("status") private Integer status; /** 推广佣金[0, 90]% */ @JsonProperty("ratio") private Integer ratio; /** 特殊推广信息 */ @JsonProperty("exclusive_info") private ExclusiveInfo exclusiveInfo; /** 扩展信息 */ @JsonProperty("ext_info") private ExtInfo extInfo; } @Data @NoArgsConstructor public static class ExclusiveInfo implements Serializable { private static final long serialVersionUID = 6583124869090013797L; /** 特殊推广商品计划id */ @JsonProperty("info_id") private String infoId; /** 推广开始时间戳 */ @JsonProperty("begin_time") private Long beginTime; /** 推广结束时间戳 */ @JsonProperty("end_time") private Long endTime; /** 是否永久推广 */ @JsonProperty("is_forerver") private Boolean forever; /** 推广达人视频号列表 */ @JsonProperty("finder_ids") private List<String> finderIds; } @Data @NoArgsConstructor public static class ExtInfo implements Serializable { /** 是否类目禁售 */ @JsonProperty("is_sale_forbidden") private Boolean saleForbidden; /** 是否被官方封禁 */ @JsonProperty("is_banned") private Boolean banned; } }
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/league/product/ProductListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductListResponse.java
package me.chanjar.weixin.channel.bean.league.product; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 ProductListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -6192518391380515045L; /** 商品列表 */ @JsonProperty("items") private List<Item> items; /** 本次翻页的上下文,用于顺序翻页请求 */ @JsonProperty("last_buffer") private String lastBuffer; /** 商品总数 */ @JsonProperty("total_num") private Integer totalNum; /** 是否还有剩余商品 */ @JsonProperty("has_more") private Boolean hasMore; @Data @NoArgsConstructor public static class Item implements Serializable { private static final long serialVersionUID = 5094378518992196239L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 特殊推广商品计划id */ @JsonProperty("info_id") private String infoId; } }
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/league/product/ProductUpdateResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductUpdateResponse.java
package me.chanjar.weixin.channel.bean.league.product; 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 ProductUpdateResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 2144233059960259829L; /** 特殊推广商品计划id */ @JsonProperty("info_id") private String infoId; }
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/league/product/ProductUpdateParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductUpdateParam.java
package me.chanjar.weixin.channel.bean.league.product; 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; /** * 商品更新请求 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class ProductUpdateParam implements Serializable { private static final long serialVersionUID = -3519313269193693460L; /** 获取商品推广类别 */ @JsonProperty("type") private Integer type; /** 商品id type为普通推广商品时必填 */ @JsonProperty("product_id") private String productId; /** 特殊推广商品计划id type为特殊推广商品时必填 */ @JsonProperty("info_id") private String infoId; /** 更新操作类别 */ @JsonProperty("operate_type") private Integer operateType; /** 推广佣金[0, 90]% */ @JsonProperty("ratio") private Integer ratio; /** 特殊推广信息 */ @JsonProperty("exclusive_info") private ExclusiveInfo exclusiveInfo; /** 特殊推广信息 */ @Data @NoArgsConstructor public static class ExclusiveInfo implements Serializable { private static final long serialVersionUID = -8120260214345369170L; /** 推广开始时间戳 */ @JsonProperty("begin_time") private Long beginTime; /** 推广结束时间戳 */ @JsonProperty("end_time") private Long endTime; /** 是否永久推广 */ @JsonProperty("is_forerver") private Boolean forever; /** 新增推广达人视频号列表,不超过30个 */ @JsonProperty("add_finder_ids") private List<String> addFinderIds; /** 删除推广达人视频号列表,不超过30个 */ @JsonProperty("del_finder_ids") private List<String> delFinderIds; } }
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/league/product/ProductDetailParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductDetailParam.java
package me.chanjar.weixin.channel.bean.league.product; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class ProductDetailParam implements Serializable { private static final long serialVersionUID = 7624234965127527565L; /** 获取商品推广类别 */ @JsonProperty("type") private Integer type; /** 商品id type为普通推广商品时必填 */ @JsonProperty("product_id") private String productId; /** 特殊推广商品计划id type为特殊推广商品时必填 */ @JsonProperty("info_id") private String infoId; /** 是否获取特殊推广商品绑定的达人列表, type为特殊推广商品时有效 */ @JsonProperty("need_relation") private Boolean needRelation; /** 拉取达人数 need_relation为真时必填 不超过50 */ @JsonProperty("page_size") private Integer pageSize; /** need_relation为真时有效,页面下标,下标从1开始,默认为1 */ @JsonProperty("page_index") private Integer pageIndex; /** need_relation为真时有效,是否需要返回该计划绑定达人总数 */ @JsonProperty("need_total_num") private Boolean needTotalNum; }
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/league/product/ProductListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductListParam.java
package me.chanjar.weixin.channel.bean.league.product; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class ProductListParam implements Serializable { private static final long serialVersionUID = -1914139382459786057L; /** 商品推广类别 */ @JsonProperty("type") private Integer type; /** 单页商品数(不超过100) */ @JsonProperty("page_size") private Integer pageSize; /** 页面下标,下标从1开始,默认为1 */ @JsonProperty("page_index") private Integer pageIndex; /** 商品id,拉取特殊推广商品时有效 */ @JsonProperty("product_id") private String productId; /** 视频号id,拉取特殊推广商品时有效 */ @JsonProperty("finder_id") private String finderId; /** 由上次请求返回,顺序翻页时需要传入, 会从上次返回的结果往后翻一页(填了该值后page_index不生效) */ @JsonProperty("last_buffer") private String lastBuffer; /** 是否需要返回满足筛选条件的商品总数(填last_buffer后该值无效) */ @JsonProperty("need_total_num") private Boolean needTotalNum; }
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/league/product/BatchAddResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/BatchAddResponse.java
package me.chanjar.weixin.channel.bean.league.product; 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 BatchAddResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 2686612709939873527L; /** 商品id信息 */ @JsonProperty("result_info_list") private List<ResultInfo> resultInfoList; @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public static class ResultInfo extends WxChannelBaseResponse { private static final long serialVersionUID = -534890760974302155L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 特殊推广商品计划id */ @JsonProperty("info_id") private String infoId; /** 推广失败达人列表 */ @JsonProperty("fail_finder_ids") private List<String> failFinderIds; } }
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/league/product/ProductDeleteParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/ProductDeleteParam.java
package me.chanjar.weixin.channel.bean.league.product; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class ProductDeleteParam implements Serializable { private static final long serialVersionUID = 9129737170370664633L; /** 获取商品推广类别 */ @JsonProperty("type") private Integer type; /** 商品id type为普通推广商品时必填 */ @JsonProperty("product_id") private String productId; /** 特殊推广商品计划id type为特殊推广商品时必填 */ @JsonProperty("info_id") private String infoId; }
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/league/product/BatchAddParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/product/BatchAddParam.java
package me.chanjar.weixin.channel.bean.league.product; 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 @JsonInclude(JsonInclude.Include.NON_NULL) public class BatchAddParam implements Serializable { private static final long serialVersionUID = -87989229725625901L; /** 商品推广类别 */ @JsonProperty("type") private Integer type; /** 商品列表 */ @JsonProperty("list") private List<Product> list; /** 推广达人列表 */ @JsonProperty("finder_ids") private List<String> finderIds; /** 推广开始时间戳 */ @JsonProperty("begin_time") private Long beginTime; /** 推广结束时间戳 */ @JsonProperty("end_time") private Long endTime; /** 是否永久推广 */ @JsonProperty("is_forerver") private Boolean forever; @Data @NoArgsConstructor @AllArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public static class Product implements Serializable { private static final long serialVersionUID = 9025105293896488093L; /** 商品id,不可重复数量不超过20 */ @JsonProperty("product_id") private String productId; /** 推广佣金[0, 90]% */ @JsonProperty("ratio") private Integer ratio; } }
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/league/window/WindowProductListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/WindowProductListResponse.java
package me.chanjar.weixin.channel.bean.league.window; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 WindowProductListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -1160519267422259848L; /** 商品概要列表 */ @JsonProperty("list") private List<ItemKey> list; /** 下一页的位置 */ @JsonProperty("next_offset") private Integer nextOffset; /** 后面是否还有商品 */ @JsonProperty("have_more") private Boolean haveMore; /** 商品总数 */ @JsonProperty("total_num") private Integer totalNum; /** 商品概要列表 */ @Data @NoArgsConstructor public static class ItemKey implements Serializable { /** 团长appid */ @JsonProperty("appid") private String appid; /** 团长商品ID */ @JsonProperty("product_id") private String productId; /** 团长ID */ @JsonProperty("head_supplier_id") private String headSupplierId; } }
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/league/window/AuthInfoResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/AuthInfoResponse.java
package me.chanjar.weixin.channel.bean.league.window; 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 AuthInfoResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 8336998502585278489L; /** 授权链接信息 */ @JsonProperty("auth_info") private AuthInfo authInfo; /** 视频号openfinderid */ @JsonProperty("openfinderid") private String openfinderid; }
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/league/window/AuthStatusResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/AuthStatusResponse.java
package me.chanjar.weixin.channel.bean.league.window; 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 AuthStatusResponse extends WxChannelBaseResponse { /** 是否授权,0: 未授权, 1: 已授权 */ @JsonProperty("window_auth_status") private Integer windowAuthStatus; }
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/league/window/WindowProductResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/WindowProductResponse.java
package me.chanjar.weixin.channel.bean.league.window; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; import me.chanjar.weixin.channel.bean.league.SimpleProductInfo; /** * 商品详情响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class WindowProductResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -4671578350314241014L; /** 商品详情 */ @JsonProperty("product_detail") private ProductDetail productDetail; /** * 商品详情 */ @Data @NoArgsConstructor public static class ProductDetail implements Serializable { private static final long serialVersionUID = -6574563870972328273L; /** 所属小店appid */ @JsonProperty("appid") private String appid; /** 商品id */ @JsonProperty("product_id") private String productId; /** 商品信息 */ @JsonProperty("product_info") private SimpleProductInfo productInfo; } }
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/league/window/WindowProductParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/WindowProductParam.java
package me.chanjar.weixin.channel.bean.league.window; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class WindowProductParam implements Serializable { private static final long serialVersionUID = 363738166094927337L; /** 团长appid */ @JsonProperty("appid") private String appid; /** 视频号openfinderid */ @JsonProperty("openfinderid") private String openfinderid; /** 团长商品ID */ @JsonProperty("product_id") private String productId; }
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/league/window/AuthInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/AuthInfo.java
package me.chanjar.weixin.channel.bean.league.window; 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 AuthInfo implements Serializable { private static final long serialVersionUID = 6265034296219892453L; /** 授权链接 */ @JsonProperty("auth_url") private String authUrl; /** 授权路径 */ @JsonProperty("auth_wxa_path") private String authWxaPath; /** appid */ @JsonProperty("auth_wxa_appid") private String authWxaAppid; /** 小程序name */ @JsonProperty("auth_wxa_username") private String authWxaUsername; }
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/league/window/ProductSearchParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/window/ProductSearchParam.java
package me.chanjar.weixin.channel.bean.league.window; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class ProductSearchParam implements Serializable { private static final long serialVersionUID = -4771046746777827382L; /** 团长appid */ @JsonProperty("appid") private String appid; /** 视频号openfinderid */ @JsonProperty("openfinderid") private String openfinderid; /** 起始位置(从0开始) */ @JsonProperty("offset") private Integer offset; /** page_size(默认100, 最大500) */ @JsonProperty("page_size") private Integer pageSize; /** 默认为false */ @JsonProperty("need_total_num") private Boolean needTotalNum; }
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/league/supplier/CoopProductListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CoopProductListParam.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class CoopProductListParam implements Serializable { private static final long serialVersionUID = -9023029707828535352L; /** 团长商品 所属小店appid */ @JsonProperty("appid") private String appid; /** 单页商品数(不超过30) */ @JsonProperty("page_size") private Integer pageSize; /** 由上次请求返回,顺序翻页时需要传入, 会从上次返回的结果往后翻一页 */ @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/league/supplier/CoopProductDetailParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CoopProductDetailParam.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class CoopProductDetailParam implements Serializable { private static final long serialVersionUID = 3515221514742929207L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 团长商品 所属小店appid */ @JsonProperty("appid") private String appId; }
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/league/supplier/CommissionOrderListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CommissionOrderListParam.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.TimeRange; /** * 佣金单列表请求参数 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class CommissionOrderListParam implements Serializable { private static final long serialVersionUID = 2805783646567362357L; /** 佣金单所属小店appid */ @JsonProperty("appid") private String appid; /** 视频号finder_id */ @JsonProperty("finder_id") private String finderId; /** 视频号openfinderid */ @JsonProperty("openfinderid") private String openfinderid; /** 佣金单创建时间范围 */ @JsonProperty("create_time_range") private TimeRange createTimeRange; /** 佣金单更新时间范围 */ @JsonProperty("update_time_range") private TimeRange updateTimeRange; /** 订单ID,填此参数后其他过滤参数无效 */ @JsonProperty("order_id") private String orderId; /** 单页佣金单数(不超过30) */ @JsonProperty("page_size") private Integer pageSize; /** 由上次请求返回,顺序翻页时需要传入, 会从上次返回的结果往后翻一页 */ @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/league/supplier/SupplierFlowDetailResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/SupplierFlowDetailResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; 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 SupplierFlowDetailResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -3962482396458765234L; /** 流水信息 */ @JsonProperty("funds_flow") private FundsFlowInfo fundsFlow; }
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/league/supplier/BizBaseInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/BizBaseInfo.java
package me.chanjar.weixin.channel.bean.league.supplier; 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 BizBaseInfo implements Serializable { private static final long serialVersionUID = 3713638025924977002L; /** 小店appid */ @JsonProperty("appid") private String appid; /** 小店头像 */ @JsonProperty("headimg_url") private String headimgUrl; /** 小店昵称 */ @JsonProperty("nickname") private String nickname; }
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/league/supplier/SupplierBalanceResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/SupplierBalanceResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; 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 SupplierBalanceResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 5584817726976222436L; /** 可提现余额 */ @JsonProperty("available_amount") private Integer availableAmount; /** 待结算余额 */ @JsonProperty("pending_amount") private Integer pendingAmount; }
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/league/supplier/ShopListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/ShopListResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 ShopListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 1736467471867767456L; /** 小店详情 */ @JsonProperty("shop_list") private List<ShopDetail> shopList; /** 本次翻页的上下文,用于顺序翻页请求 */ @JsonProperty("next_key") private String nextKey; /** 是否还有剩余小店 */ @JsonProperty("has_more") private Boolean hasMore; /** 小店详情 */ @Data @NoArgsConstructor public static class ShopDetail implements Serializable { private static final long serialVersionUID = 8421286426372052694L; /** 小店基础信息 */ @JsonProperty("base_info") private BizBaseInfo baseInfo; /** 小店状态 */ @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/league/supplier/CommissionOrderListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CommissionOrderListResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 CommissionOrderListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 1143184321517598592L; /** 商品id信息 */ @JsonProperty("list") private List<ProductIdInfo> list; /** 本次翻页的上下文,用于顺序翻页请求 */ @JsonProperty("next_key") private String nextKey; /** 是否还有剩余商品 */ @JsonProperty("has_more") private Boolean hasMore; @Data @NoArgsConstructor public static class ProductIdInfo implements Serializable { private static final long serialVersionUID = -691189837681217282L; /** 商品id */ @JsonProperty("order_id") private String orderId; /** skuid */ @JsonProperty("sku_id") private String 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/league/supplier/CoopProductResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CoopProductResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 CoopProductResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -4066427847985394479L; /** 商品信息 */ @JsonProperty("item") private Item item; @Data @NoArgsConstructor public static class Item implements Serializable { private static final long serialVersionUID = 6123572874440025928L; /** 所属小店appid */ @JsonProperty("appid") private String appid; /** 商品id */ @JsonProperty("product_id") private String productId; /** 商品信息 */ @JsonProperty("product_info") private ProductInfo productInfo; /** 跟佣信息 */ @JsonProperty("commission_info") private CommissionInfo commissionInfo; } }
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/league/supplier/CoopProductListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CoopProductListResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 CoopProductListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -5440144076389135839L; /** 商品id信息 */ @JsonProperty("list") private List<ProductIdInfo> list; /** 本次翻页的上下文,用于顺序翻页请求 */ @JsonProperty("next_key") private String nextKey; /** 是否还有剩余商品 */ @JsonProperty("has_more") private Boolean hasMore; @Data @NoArgsConstructor public static class ProductIdInfo implements Serializable { private static final long serialVersionUID = -7136011408769169462L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 所属小店appid */ @JsonProperty("appid") private String appid; } }
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/league/supplier/SupplierFlowListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/SupplierFlowListResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import lombok.Data; import lombok.NoArgsConstructor; import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse; /** * 资金流水列表 响应 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class SupplierFlowListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -2954427554226407544L; /** 流水单号列表 */ @JsonProperty("funds_flow_ids") private List<String> ids; /** 是否还有下一页 */ @JsonProperty("has_more") private Boolean hasMore; /** 分页参数,深翻页时使用 */ @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/league/supplier/SkuInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/SkuInfo.java
package me.chanjar.weixin.channel.bean.league.supplier; 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; /** * SkuInfo * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor public class SkuInfo implements Serializable { private static final long serialVersionUID = 197261426211990640L; /** skuID */ @JsonProperty("sku_id") private String skuId; /** sku小图。如果添加时没录入,回包可能不包含该字段 */ @JsonProperty("thumb_img") private String thumbImg; /** 售卖价格,以分为单位 */ @JsonProperty("sale_price") private Integer salePrice; /** sku库存 */ @JsonProperty("stock_num") private Integer stockNum; /** sku属性 */ @JsonProperty("sku_attrs") private List<AttrInfo> skuAttrs; }
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/league/supplier/ShopDetailResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/ShopDetailResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 ShopDetailResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 188954608418544735L; /** 小店详情 */ @JsonProperty("shop_detail") private ShopDetail shopDetail; /** 本次翻页的上下文,用于顺序翻页请求 */ @JsonProperty("next_key") private String nextKey; /** 是否还有剩余小店 */ @JsonProperty("has_more") private Boolean hasMore; /** 小店详情 */ @Data @NoArgsConstructor public static class ShopDetail implements Serializable { private static final long serialVersionUID = -3454074422563804378L; /** 小店基础信息 */ @JsonProperty("base_info") private BizBaseInfo baseInfo; /** 小店数据信息 */ @JsonProperty("data_info") private ShopDataInfo dataInfo; /** 合作状态Status 1邀请中 2已接受邀请 3已拒绝邀请 4取消邀请 5取消合作 */ @JsonProperty("status") private Integer status; /** 开始合作时间戳 */ @JsonProperty("approved_time") private Long approvedTime; } /** 小店数据信息 */ @Data @NoArgsConstructor public static class ShopDataInfo implements Serializable { private static final long serialVersionUID = 6603460255046252283L; /** 合作动销GMV,单位:分 */ @JsonProperty("gmv") private Integer gmv; /** 历史合作商品数 */ @JsonProperty("product_number") private Integer productNumber; /** 已结算服务费,单位:分 */ @JsonProperty("settle_amount") private Integer settleAmount; /** 预计待结算服务费,单位:分 */ @JsonProperty("unsettle_amount") private Integer unsettleAmount; /** 今日新增合作商品数 */ @JsonProperty("product_number_today") private Integer productNumberToday; /** 今日动销商品数 */ @JsonProperty("product_number_sold_today") private Integer productNumberSoldToday; } }
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/league/supplier/CommissionOrderResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CommissionOrderResponse.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; 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 CommissionOrderResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 7004553990771819977L; /** 佣金单 */ @JsonProperty("commssion_order") private CommissionOrder commissionOrder; /** 佣金单 */ @Data @NoArgsConstructor public static class CommissionOrder implements Serializable { private static final long serialVersionUID = 735931726521944716L; /** 订单号 */ @JsonProperty("order_id") private String orderId; /** 商品skuid */ @JsonProperty("sku_id") private String skuId; /** 秒级时间戳 */ @JsonProperty("create_time") private Long createTime; /** 秒级时间戳 */ @JsonProperty("update_time") private Long updateTime; /** 佣金单状态,见{@link me.chanjar.weixin.channel.enums.CommissionOrderStatus} */ @JsonProperty("status") private Integer status; /** 订单详情 */ @JsonProperty("order_detail") private OrderDetail orderDetail; } /** 订单详情 */ @Data @NoArgsConstructor public static class OrderDetail implements Serializable { private static final long serialVersionUID = 8349635368396073000L; /** 小店商家信息 */ @JsonProperty("shop_info") private BizInfo shopInfo; /** 佣金单商品信息 */ @JsonProperty("product_info") private ProductInfo productInfo; /** 订单信息 */ @JsonProperty("order_info") private OrderInfo orderInfo; /** 分佣信息 */ @JsonProperty("commission_info") private CommissionInfo commissionInfo; } /** 小店商家信息 */ @Data @NoArgsConstructor public static class BizInfo implements Serializable { private static final long serialVersionUID = -8229584987720782974L; /** 所属小店appid */ @JsonProperty("appid") private String appid; } /** 佣金单商品信息 */ @Data @NoArgsConstructor public static class ProductInfo implements Serializable { private static final long serialVersionUID = -2790410903073956864L; /** 商品id */ @JsonProperty("product_id") private String productId; /** sku小图 */ @JsonProperty("thumb_img") private String thumbImg; /** 可分佣金额 */ @JsonProperty("actual_payment") private Integer actualPayment; /** 商品标题 */ @JsonProperty("title") private String title; } /** 订单信息 */ @Data @NoArgsConstructor public static class OrderInfo implements Serializable { private static final long serialVersionUID = 7610425518539999170L; /** 订单状态,枚举值见OrderStatus */ @JsonProperty("order_status") private Integer status; } /** 分佣信息 */ @Data @NoArgsConstructor public static class CommissionInfo implements Serializable { private static final long serialVersionUID = -2114290318872427720L; /** 带货达人信息 */ @JsonProperty("finder_info") private FinderInfo finderInfo; /** 服务费率[0, 1000000] */ @JsonProperty("service_ratio") private Integer serviceRatio; /** 服务费金额 */ @JsonProperty("service_amount") private Integer serviceAmount; /** 服务费结算时间 */ @JsonProperty("profit_sharding_suc_time") private Long profitShardingSucTime; } /** 带货达人信息 */ @Data @NoArgsConstructor public static class FinderInfo implements Serializable { private static final long serialVersionUID = 7383486670949864257L; /** 达人昵称 */ @JsonProperty("nickname") private String nickname; /** 佣金率[0, 1000000] */ @JsonProperty("ratio") private Integer ratio; /** 佣金 */ @JsonProperty("amount") private Integer amount; /** 视频号openfinderid */ @JsonProperty("openfinderid") private String openfinderid; } }
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/league/supplier/FundsFlowInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/FundsFlowInfo.java
package me.chanjar.weixin.channel.bean.league.supplier; 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 FundsFlowInfo implements Serializable { private static final long serialVersionUID = 102705878551490327L; /** 流水id */ @JsonProperty("flow_id") private String flowId; /** 资金类型, 1提现 2分账 */ @JsonProperty("funds_type") private Integer fundsType; /** 流水金额 单位:分 */ @JsonProperty("amount") private Integer amount; /** 余额 单位:分 */ @JsonProperty("balance") private Integer balance; /** 记账时间 */ @JsonProperty("bookkeeping_time") private String bookkeepingTime; /** 备注 */ @JsonProperty("remark") private String remark; /** 关联订单号 */ @JsonProperty("order_id") private String orderId; /** 关联提现单号 */ @JsonProperty("withdraw_id") private String withdrawId; }
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/league/supplier/ProductInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/ProductInfo.java
package me.chanjar.weixin.channel.bean.league.supplier; 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.league.ExpressInfo; import me.chanjar.weixin.channel.bean.league.SimpleProductInfo; /** * 商品信息 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class ProductInfo extends SimpleProductInfo { private static final long serialVersionUID = 5352334936089828219L; /** 快递信息 */ @JsonProperty("express_info") private ExpressInfo expressInfo; /** sku信息 */ @JsonProperty("skus") private List<SkuInfo> skus; }
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/league/supplier/FlowListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/FlowListParam.java
package me.chanjar.weixin.channel.bean.league.supplier; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class FlowListParam implements Serializable { private static final long serialVersionUID = 3128695806885851134L; /** 页码,从1开始 */ @JsonProperty("page") private Integer page; /** 页数,不填默认为10 */ @JsonProperty("page_size") private Integer pageSize; /** 资金类型, 见 {@link me.chanjar.weixin.channel.enums.FundsType} */ @JsonProperty("funds_type") private Integer fundsType; /** 流水产生的开始时间,uinx时间戳 */ @JsonProperty("start_time") private Long startTime; /** 流水产生的结束时间,unix时间戳 */ @JsonProperty("end_time") private Long endTime; /** 分页参数,翻页时写入上一页返回的next_key(page为上一页加一,并且page_size与上一页相同的时候才生效),page * page_size >= 5000时必填 */ @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/league/supplier/CommissionInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/supplier/CommissionInfo.java
package me.chanjar.weixin.channel.bean.league.supplier; 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 CommissionInfo implements Serializable { private static final long serialVersionUID = 3027131215096984236L; /** 商品带货状态 1已上架推广 2已下架推广 5已清退 */ @JsonProperty("status") private Integer status; /** 服务费率[0, 1000000] */ @JsonProperty("service_ratio") private Integer serviceRatio; /** 佣金费率[0, 1000000] */ @JsonProperty("ratio") private Integer ratio; /** unix时间戳,合作开始时间 */ @JsonProperty("start_time") private Long startTime; /** unix时间戳,合作结束时间 */ @JsonProperty("end_time") private Long endTime; /** 带货链接 */ @JsonProperty("link") private String link; }
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/league/promoter/PromoterListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/promoter/PromoterListParam.java
package me.chanjar.weixin.channel.bean.league.promoter; 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 PromoterListParam implements Serializable { private static final long serialVersionUID = -6179472484874537538L; /** 页面下标,下标从1开始,默认为1 */ @JsonProperty("page_index") protected Integer pageIndex; /** 页面下标,下标从1开始,默认为1 */ @JsonProperty("page_size") protected Integer pageSize; /** 拉取该状态下的达人列表 */ 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/league/promoter/PromoterInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/promoter/PromoterInfo.java
package me.chanjar.weixin.channel.bean.league.promoter; 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 PromoterInfo implements Serializable { private static final long serialVersionUID = -8851711325343107780L; /** 视频号finder_id */ @JsonProperty("finder_id") private String finderId; /** 合作状态 0初始值 1邀请中 2达人已接受邀请 3达人已拒绝邀请 4已取消邀请 5已取消合作 10已删除 */ @JsonProperty("status") private Integer status; /** 达人邀请秒级时间戳 */ @JsonProperty("invite_time") private Long inviteTime; /** 累计合作商品数 */ @JsonProperty("sale_product_number") private Integer saleProductNumber; /** 合作动销GMV */ @JsonProperty("sale_gmv") private Integer saleGmv; }
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/league/promoter/PromoterListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/promoter/PromoterListResponse.java
package me.chanjar.weixin.channel.bean.league.promoter; 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 PromoterListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 1411870432999885996L; /** 达人finder_id列表,待废除后续以promoter_ids为准 */ @JsonProperty("finder_ids") private List<String> finderIds; /** 达人总数 */ @JsonProperty("total_num") private Integer totalNum; /** 后面是否还有(true: 还有内容; false: 已结束)*/ @JsonProperty("continue_flag") private Boolean continueFlag; /** 达人带货id列表 */ @JsonProperty("promoter_ids") private List<String> promoterIds; }
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/league/promoter/PromoterInfoResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/league/promoter/PromoterInfoResponse.java
package me.chanjar.weixin.channel.bean.league.promoter; 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 PromoterInfoResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 6475158486029216487L; /** 达人信息 */ @JsonProperty("promoter") private PromoterInfo promoter; }
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/home/background/BackgroundApplyResult.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/background/BackgroundApplyResult.java
package me.chanjar.weixin.channel.bean.home.background; 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 BackgroundApplyResult implements Serializable { private static final long serialVersionUID = 3154900058221168732L; /** 申请编号 */ @JsonProperty("apply_id") private Integer applyId; /** 申请状态。1审核中 2审核驳回 */ @JsonProperty("state") private Integer state; /** 审核结果描述。state为审核驳回时有值。 */ @JsonProperty("audit_desc") private String auditDesc; /** 图片url */ @JsonProperty("img_url") private String imgUrl; }
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/home/background/BackgroundGetResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/background/BackgroundGetResponse.java
package me.chanjar.weixin.channel.bean.home.background; 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 BackgroundGetResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -9158761351220981959L; /** 当前生效的背景图片url */ @JsonProperty("img_url") private String imgUrl; /** 背景图审核信息 */ @JsonProperty("apply") private BackgroundApplyResult apply; }
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/home/background/BackgroundApplyResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/background/BackgroundApplyResponse.java
package me.chanjar.weixin.channel.bean.home.background; 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 BackgroundApplyResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -5627456997199822109L; /** 申请编号 */ @JsonProperty("apply_id") private Integer applyId; }
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/home/window/WindowProductSetting.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/window/WindowProductSetting.java
package me.chanjar.weixin.channel.bean.home.window; import com.fasterxml.jackson.annotation.JsonInclude; 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(JsonInclude.Include.NON_NULL) public class WindowProductSetting implements Serializable { private static final long serialVersionUID = -5931781905709862287L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 是否隐藏,设置为隐藏的商品只在首页不可见,并不代表下架。 */ @JsonProperty("is_set_hide") private Integer setHide; /** 是否置顶 */ @JsonProperty("is_set_top") private Integer setTop; }
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/home/window/WindowProductListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/window/WindowProductListParam.java
package me.chanjar.weixin.channel.bean.home.window; 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 WindowProductListParam implements Serializable { /** 每页数量(默认10,不超过30) */ @JsonProperty("page_size") private Integer pageSize; /** 由上次请求返回,记录翻页的上下文。传入时会从上次返回的结果往后翻一页,不传默认获取第一页数据。 */ @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/home/window/WindowProductIndexParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/window/WindowProductIndexParam.java
package me.chanjar.weixin.channel.bean.home.window; 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 WindowProductIndexParam implements Serializable { private static final long serialVersionUID = 1370480140179330908L; /** 商品id */ @JsonProperty("product_id") private String productId; /** 商品重新排序后的新序号,最大移动步长为500(即新序号与当前序号的距离小于500) */ @JsonProperty("index_num") private Integer indexNum; }
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/home/window/WindowProductSettingResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/window/WindowProductSettingResponse.java
package me.chanjar.weixin.channel.bean.home.window; 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 WindowProductSettingResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 1L; /** 商品信息 */ @JsonProperty("products") private List<WindowProductSetting> products; /** 本次翻页的上下文,用于请求下一页 */ @JsonProperty("next_key") private String nextKey; /** 商品总数 */ @JsonProperty("total_num") private Integer totalNum; }
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/home/banner/BannerItemDetail.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerItemDetail.java
package me.chanjar.weixin.channel.bean.home.banner; 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_NULL) public class BannerItemDetail implements Serializable { private static final long serialVersionUID = 5975434996207526173L; /** 图片url */ @JsonProperty("img_url") private String imgUrl; /** 标题 */ @JsonProperty("title") private String title; /** 描述 */ @JsonProperty("description") private String description; }
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/home/banner/BannerGetResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerGetResponse.java
package me.chanjar.weixin.channel.bean.home.banner; 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 BannerGetResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -1563254921362215934L; /** 当前生效的展示位 */ @JsonProperty("banner") private BannerInfo banner; /** 最近一次流程中的申请。不返回已生效或已撤销的申请 */ @JsonProperty("apply") private BannerApplyInfo apply; }
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/home/banner/BannerItemProduct.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerItemProduct.java
package me.chanjar.weixin.channel.bean.home.banner; 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_NULL) public class BannerItemProduct implements Serializable { private static final long serialVersionUID = 8034487065591522594L; /** 商品id */ @JsonProperty("product_id") private Long productId; }
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/home/banner/BannerApplyResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerApplyResponse.java
package me.chanjar.weixin.channel.bean.home.banner; 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 BannerApplyResponse extends WxChannelBaseResponse { private static final long serialVersionUID = -2194587734444499201L; /** 申请编号 */ @JsonProperty("apply_id") private Integer applyId; }
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/home/banner/BannerApplyDetail.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerApplyDetail.java
package me.chanjar.weixin.channel.bean.home.banner; 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_NULL) public class BannerApplyDetail implements Serializable { private static final long serialVersionUID = -4622897527243343862L; /** 审核状态。 1-审核中;2-审核驳回 */ @JsonProperty("audit_state") private Integer auditState; /** 审核结果描述。audit_state为驳回时有值。 */ @JsonProperty("audit_desc") private String auditDesc; /** 精选展示位申请明细 */ @JsonProperty("banner") private BannerItem banner; }
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/home/banner/BannerItemFinder.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerItemFinder.java
package me.chanjar.weixin.channel.bean.home.banner; 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_NULL) public class BannerItemFinder implements Serializable { private static final long serialVersionUID = -7397790079913284012L; /** 视频号ID */ @JsonProperty("finder_user_name") private String finderUserName; /** 视频号视频的唯一标识 */ @JsonProperty("feed_id") private String feedId; }
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/home/banner/BannerItemOfficialAccount.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerItemOfficialAccount.java
package me.chanjar.weixin.channel.bean.home.banner; 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_NULL) public class BannerItemOfficialAccount implements Serializable { private static final long serialVersionUID = -5596947592282082891L; /** 公众号文章url */ @JsonProperty("url") private String url; }
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/home/banner/BannerItem.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerItem.java
package me.chanjar.weixin.channel.bean.home.banner; 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_NULL) public class BannerItem implements Serializable { private static final long serialVersionUID = 6982412458700854481L; /** 展示位类型 1-商品 3-视频号 4-公众号 {@link me.chanjar.weixin.channel.enums.BannerType} */ @JsonProperty("type") private Integer type; /** 展示位信息 */ @JsonProperty("banner") private BannerItemDetail banner; /** 商品 */ @JsonProperty("product") private BannerItemProduct product; /** 视频号 */ @JsonProperty("finder") private BannerItemFinder finder; /** 公众号 */ @JsonProperty("official_account") private BannerItemOfficialAccount officialAccount; }
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/home/banner/BannerApplyInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerApplyInfo.java
package me.chanjar.weixin.channel.bean.home.banner; 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 BannerApplyInfo implements Serializable { private static final long serialVersionUID = 72190625450999960L; /** 申请编号 */ @JsonProperty("apply_id") private Integer applyId; /** 申请状态 1-审核中;2-审核驳回 */ @JsonProperty("state") private Integer state; /** 展示位的展示样式 1-小图模式;2-大图模式 */ @JsonProperty("scale") private Integer scale; /** 精选展示位申请明细 */ @JsonProperty("banner") private List<BannerApplyDetail> banner; }
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/home/banner/BannerInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerInfo.java
package me.chanjar.weixin.channel.bean.home.banner; 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; import lombok.NoArgsConstructor; /** * 精选展示位 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @JsonInclude(Include.NON_NULL) public class BannerInfo implements Serializable { private static final long serialVersionUID = -2003175482038217418L; /** 展示位的展示样式 1-小图模式;2-大图模式 */ @JsonProperty("scale") private Integer scale; /** 精选展示位明细 */ @JsonProperty("banner") private List<BannerItem> banner; }
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/home/banner/BannerApplyParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/banner/BannerApplyParam.java
package me.chanjar.weixin.channel.bean.home.banner; 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 BannerApplyParam implements Serializable { private static final long serialVersionUID = 9083668032979490150L; /** banner */ @JsonProperty("banner") private BannerInfo banner; }
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/home/tree/TreeProductListResult.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeProductListResult.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeProductListResult implements Serializable { private static final long serialVersionUID = 4566848209585635054L; /** 关联的商品ID。如果返回为空,返回翻页到底了 */ @JsonProperty("product_ids") private List<Long> productIds; /** 总条数 */ @JsonProperty("total_count") private Integer totalCount; /** 拉取下一页的话,需要把这个值填到req的page_context里面 */ @JsonProperty("page_context") private String pageContext; }
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/home/tree/LevelTreeInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/LevelTreeInfo.java
package me.chanjar.weixin.channel.bean.home.tree; 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 public class LevelTreeInfo implements Serializable { /** 一级分类 */ @JsonProperty("level_1") private List<OneLevelTreeNode> level1; }
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/home/tree/TreeProductListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeProductListParam.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeProductListParam implements Serializable { private static final long serialVersionUID = -8444106841479328711L; /** 参数 */ @JsonProperty("req") private TreeProductListInfo req; }
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/home/tree/TreeProductEditInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeProductEditInfo.java
package me.chanjar.weixin.channel.bean.home.tree; 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 public class TreeProductEditInfo implements Serializable { private static final long serialVersionUID = -5596947592282082891L; /** 一级分类id */ @JsonProperty("level_1_id") private Integer level1Id; /** 二级分类id */ @JsonProperty("level_2_id") private Integer level2Id; /** 商品id列表 */ @JsonProperty("product_ids") private List<Long> productIds; }
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/home/tree/CatTreeNode.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/CatTreeNode.java
package me.chanjar.weixin.channel.bean.home.tree; 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 CatTreeNode implements Serializable { private static final long serialVersionUID = 3154219180098003510L; /** 分类id */ @JsonProperty("id") private Integer id; /** 分类名字 */ @JsonProperty("name") private String name; /** 是否在用户端展示该分类。1为是,0为否 */ @JsonProperty("is_displayed") private Boolean displayed; }
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/home/tree/TreeShowParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeShowParam.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeShowParam implements Serializable { private static final long serialVersionUID = -1577647561992899360L; /** 分类信息 */ @JsonProperty("req") private TreeShowInfo req; }
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/home/tree/TreeAuditResult.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeAuditResult.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeAuditResult implements Serializable { private static final long serialVersionUID = 8142657614529852121L; /** 版本号。设置分类树的接口会用到 */ @JsonProperty("version") private Integer version; /** 展示在店铺主页的商品分类 */ @JsonProperty("audit_results") private List<TreeAuditResultDetail> auditResults; }
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/home/tree/TreeShowSetResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeShowSetResponse.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeShowSetResponse extends WxChannelBaseResponse { /** resp */ @JsonProperty("resp") private TreeAuditResult resp; }
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/home/tree/TreeShowGetResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeShowGetResponse.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeShowGetResponse extends WxChannelBaseResponse { /** resp */ @JsonProperty("resp") private TreeShowInfo resp; }
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/home/tree/TreeProductEditParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeProductEditParam.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeProductEditParam implements Serializable { private static final long serialVersionUID = -4906016235749892703L; /** 参数 */ @JsonProperty("req") private TreeProductEditInfo req; }
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/home/tree/TreeAuditResultDetail.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeAuditResultDetail.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeAuditResultDetail implements Serializable { private static final long serialVersionUID = -6085892397971684732L; /** 该分类ID的审核结果 */ @JsonProperty("level_id") private Integer level_id; /** 审核结果枚举。1:不通过;2:通过 */ @JsonProperty("result_code") private Integer result_code; }
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/home/tree/TreeProductListResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeProductListResponse.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeProductListResponse extends WxChannelBaseResponse { private static final long serialVersionUID = 4566848209585635054L; /** 结果 */ @JsonProperty("resp") private TreeProductListResult resp; }
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/home/tree/TreeShowInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeShowInfo.java
package me.chanjar.weixin.channel.bean.home.tree; 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 public class TreeShowInfo implements Serializable { /** 分类树 */ @JsonProperty("tree") private LevelTreeInfo tree; /** 版本号。通过获取商品分类树或者本接口得到 */ @JsonProperty("version") private Integer version; /** 表示有哪一些分类ID清空关联得商品,如果不清空,那么分类ID和商品得关联关系会一直存在。如果是一级分类,就填"1"。如果是二级分类,就填"1.2"。 */ @JsonProperty("classification_id_deleted") private List<String> classificationIdDeleted; // 一些自定义的方法 /** * 创建Tree节点 * * @return Tree节点 */ protected LevelTreeInfo createTree() { if (tree == null) { tree = new LevelTreeInfo(); } return tree; } }
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/home/tree/OneLevelTreeNode.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/OneLevelTreeNode.java
package me.chanjar.weixin.channel.bean.home.tree; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import lombok.AllArgsConstructor; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; /** * 一级分类 * * @author <a href="https://github.com/lixize">Zeyes</a> */ @Data @NoArgsConstructor @AllArgsConstructor @EqualsAndHashCode(callSuper = true) public class OneLevelTreeNode extends CatTreeNode { /** 二级分类 */ @JsonProperty("level_2") private List<CatTreeNode> level2; }
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/home/tree/TreeProductListInfo.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/home/tree/TreeProductListInfo.java
package me.chanjar.weixin.channel.bean.home.tree; 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 TreeProductListInfo implements Serializable { private static final long serialVersionUID = 2774682583380930076L; /** 一级分类id */ @JsonProperty("level_1_id") private Integer level1Id; /** 二级分类id */ @JsonProperty("level_2_id") private Integer level2Id; /** 分页大小 */ @JsonProperty("page_size") private Integer pageSize; /** 从头拉取填空。翻页拉取的话填resp返回的值 */ @JsonProperty("page_context") private String pageContext; }
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/LiveDashboardData.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData.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 LiveDashboardData implements Serializable { private static final long serialVersionUID = 7917049411269553153L; /** * 直播大屏数据实体 */ @JsonProperty("live_dashboard_data") private LiveDashboardData2 liveDashboardData; /** * 直播时长 */ @JsonProperty("live_duration") private Long liveDuration; /** * 直播开始时间 */ @JsonProperty("start_time") private Long startTime; }
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/LiveComparisonIndex.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveComparisonIndex.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 LiveComparisonIndex implements Serializable { private static final long serialVersionUID = 525214144965479881L; /** * 是否正在直播 */ @JsonProperty("is_living") private Boolean isLiving; /** * 在播数据 */ @JsonProperty("on_air") private OnAir onAir; /** * 关播数据 */ @JsonProperty("ended") private Ended ended; }
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/ConversionMetric.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/ConversionMetric.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 ConversionMetric implements Serializable { private static final long serialVersionUID = - 3411290344181494863L; /** * 商品曝光-点击转化率 */ @JsonProperty("product_view_click_conversion_ratio") private ItemConversionMetric productViewClickConversionRatio; /** * 气泡曝光-点击转化率 */ @JsonProperty("bubble_view_click_conversion_ratio") private ItemConversionMetric bubbleViewClickConversionRatio; /** * 成交转化率 */ @JsonProperty("pay_conversion_ratio") private ItemConversionMetric payConversionRatio; /** * 千次观看成交金额(单位:分) */ @JsonProperty("k_view_pay_conversion_ratio") private ItemConversionMetric kViewPayConversionRatio; /** * 更新时间 */ @JsonProperty("update_time") private Long updateTime; /** * 购物袋商品点击率 */ @JsonProperty("product_list_click_conversion_ratio") private ItemConversionMetric productListClickConversionRatio; /** * 挂车时间(>0 则为挂车) */ @JsonProperty("shelftime") private Long shelftime; }
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/LiveItem.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveItem.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 LiveItem implements Serializable { private static final long serialVersionUID = 6693176992531666035L; /** * 直播唯一ID */ @JsonProperty("export_id") private String exportId; /** * 直播创建时间 */ @JsonProperty("create_time") private Long createTime; }
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/OnAir.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/OnAir.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 OnAir implements Serializable { private static final long serialVersionUID = 6354207471314033499L; /** * 曝光有效CTR(万分比) */ @JsonProperty("recommend_effective_new_watch_2_uv_over_impression_uv") private OnAirIndexItem recommendEffectiveNewWatch2UvOverImpressionUv; /** * 人均看播时长 */ @JsonProperty("average_watch_seconds") private OnAirIndexItem averageWatchSeconds; /** * 评论率(万分比) */ @JsonProperty("comment_uv_over_new_watch_uv") private OnAirIndexItem commentUvOverNewWatchUv; /** * 点赞率(万分比) */ @JsonProperty("like_uv_over_new_watch_uv") private OnAirIndexItem likeUvOverNewWatchUv; }
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/LiveListParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveListParam.java
package me.chanjar.weixin.channel.bean.live.dashboard; 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; /** * 获取直播大屏直播列表请求参数 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @AllArgsConstructor @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class LiveListParam implements Serializable { private static final long serialVersionUID = - 8451283214646387030L; /** * 日期,格式 yyyyMMdd */ @JsonProperty("ds") private Long ds; }
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/DataNode.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/DataNode.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 DataNode implements Serializable { private static final long serialVersionUID = 3192158546911682577L; /** * 统计数值维度指标 */ @JsonProperty("fields") private Fields fields; }
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/SubLiveDistChannelSourceStats.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/SubLiveDistChannelSourceStats.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 SubLiveDistChannelSourceStats implements Serializable { private static final long serialVersionUID = - 5279814435684116105L; /** * 渠道层级 */ @JsonProperty("level") private Integer level; /** * 来源渠道ID */ @JsonProperty("source_channel_id") private Long sourceChannelId; /** * 在该渠道下的统计值 */ @JsonProperty("metric_value") private Long metricValue; /** * GMV总值(单位:分) */ @JsonProperty("gmv") private Long gmv; /** * UV总值 */ @JsonProperty("uv") private Long uv; /** * 千次看播成交(单位: 分) */ @JsonProperty("gmv_per_uv") private Long gmvPerUv; /** * gmv占比 */ @JsonProperty("gmv_ratio") private Double gmvRatio; /** * uv占比 */ @JsonProperty("uv_ratio") private Double uvRatio; /** * 在该渠道下的统计值比率 */ @JsonProperty("metric_value_ratio") private Double metricValueRatio; /** * 渠道名称 */ @JsonProperty("source_channel_name") private String sourceChannelName; /** * pv */ @JsonProperty("pv") private Long pv; /** * 当前层级pv占总pv的比例 */ @JsonProperty("pv_ratio") private Double pvRatio; }
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/Point.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/Point.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 Point implements Serializable { private static final long serialVersionUID = 3332256418933163389L; /** * 时间戳 */ @JsonProperty("ts") private Long ts; /** * 指标值 */ @JsonProperty("value") private Long value; }
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/LiveDashboardData2Portrait.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData2Portrait.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 LiveDashboardData2Portrait implements Serializable { private static final long serialVersionUID = - 5603781471063785276L; /** * 在线人数的画像 */ @JsonProperty("online_watch_uv") private List<Series> onlineWatchUv; /** * 观看人数的画像 */ @JsonProperty("new_watch_uv") private List<Series> newWatchUv; }
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/Fields.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/Fields.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 Fields implements Serializable { private static final long serialVersionUID = 228387216076265877L; /** * 维度值 */ @JsonProperty("dim_key") private String dimKey; /** * 指标值 */ @JsonProperty("dim_val") private String dimVal; /** * 指标值比例 */ @JsonProperty("dim_val_ratio") private String dimValRatio; }
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/SpuData.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/SpuData.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 SpuData implements Serializable { private static final long serialVersionUID = 7409791549917863816L; /** * 商品基础数据 */ @JsonProperty("base_data") private SpuBaseData baseData; /** * 商品曝光人数 */ @JsonProperty("exp_uv") private Long expUv; /** * 商品曝光次数 */ @JsonProperty("exp_pv") private Long expPv; /** * 商品粉丝曝光人数 */ @JsonProperty("fans_exp_uv") private Long fansExpUv; /** * 商品粉丝曝光次数 */ @JsonProperty("fans_exp_pv") private Long fansExpPv; /** * 商品非粉丝曝光人数 */ @JsonProperty("non_fans_exp_uv") private Long nonFansExpUv; /** * 商品非粉丝曝光次数 */ @JsonProperty("non_fans_exp_pv") private Long nonFansExpPv; /** * 商品新客户曝光人数 */ @JsonProperty("new_customer_exp_uv") private Long newCustomerExpUv; /** * 商品新客户曝光次数 */ @JsonProperty("new_customer_exp_pv") private Long newCustomerExpPv; /** * 商品老客户曝光人数 */ @JsonProperty("repeated_customer_exp_uv") private Long repeatedCustomerExpUv; /** * 商品老客户曝光次数 */ @JsonProperty("repeated_customer_exp_pv") private Long repeatedCustomerExpPv; /** * 商品点击人数 */ @JsonProperty("clk_uv") private Long clkUv; /** * 商品点击次数 */ @JsonProperty("clk_pv") private Long clkPv; /** * 商品新客户点击人数 */ @JsonProperty("new_customer_clk_uv") private Long newCustomerClkUv; /** * 商品新客户点击次数 */ @JsonProperty("new_customer_clk_pv") private Long newCustomerClkPv; /** * 商品老客户点击人数 */ @JsonProperty("repeated_customer_clk_uv") private Long repeatedCustomerClkUv; /** * 商品老客户点击次数 */ @JsonProperty("repeated_customer_clk_pv") private Long repeatedCustomerClkPv; /** * 商品粉丝点击人数 */ @JsonProperty("fans_clk_uv") private Long fansClkUv; /** * 商品粉丝点击次数 */ @JsonProperty("fans_clk_pv") private Long fansClkPv; /** * 商品非粉丝点击人数 */ @JsonProperty("non_fans_clk_uv") private Long nonFansClkUv; /** * 商品非粉丝点击次数 */ @JsonProperty("non_fans_clk_pv") private Long nonFansClkPv; /** * 商品分享人数 */ @JsonProperty("share_uv") private Long shareUv; /** * 商品分享次数 */ @JsonProperty("share_pv") private Long sharePv; /** * 商品曝光点击率 */ @JsonProperty("exp_clk_ratio") private Double expClkRatio; /** * 商品点击成交率 */ @JsonProperty("clk_pay_ratio") private Double clkPayRatio; /** * 商品成交金额(单位:分) */ @JsonProperty("gmv") private Long gmv; /** * 商品成交订单数 */ @JsonProperty("pay_pv") private Long payPv; /** * 商品成交人数 */ @JsonProperty("pay_uv") private Long payUv; /** * 商品粉丝成交订单数 */ @JsonProperty("fans_pay_pv") private Long fansPayPv; /** * 商品粉丝成交人数 */ @JsonProperty("fans_pay_uv") private Long fansPayUv; /** * 商品非粉丝成交订单数 */ @JsonProperty("non_fans_pay_pv") private Long nonFansPayPv; /** * 商品非粉丝成交人数 */ @JsonProperty("non_fans_pay_uv") private Long nonFansPayUv; /** * 商品新客户成交次数 */ @JsonProperty("new_customer_pay_pv") private Long newCustomerPayPv; /** * 商品新客户成交人数 */ @JsonProperty("new_customer_pay_uv") private Long newCustomerPayUv; /** * 商品老客户成交次数 */ @JsonProperty("repeated_customer_pay_pv") private Long repeatedCustomerPayPv; /** * 商品老客户成交人数 */ @JsonProperty("repeated_customer_pay_uv") private Long repeatedCustomerPayUv; /** * 商品退款人数 */ @JsonProperty("refund_uv") private Long refundUv; /** * 商品退款订单数 */ @JsonProperty("refund_pv") private Long refundPv; /** * 商品退款金额(单位:分) */ @JsonProperty("refund_amount") private Long refundAmount; /** * 商品订单创建人数 */ @JsonProperty("create_uv") private Long createUv; /** * 商品订单创建次数 */ @JsonProperty("create_pv") private Long createPv; /** * 商品粉丝订单创建人数 */ @JsonProperty("fans_create_uv") private Long fansCreateUv; /** * 商品粉丝订单创建次数 */ @JsonProperty("fans_create_pv") private Long fansCreatePv; /** * 商品非粉丝订单创建人数 */ @JsonProperty("non_fans_create_uv") private Long nonFansCreateUv; /** * 商品非粉丝订单创建次数 */ @JsonProperty("non_fans_create_pv") private Long nonFansCreatePv; /** * 商品新客户订单创建人数 */ @JsonProperty("new_customer_create_uv") private Long newCustomerCreateUv; /** * 商品新客户订单创建次数 */ @JsonProperty("new_customer_create_pv") private Long newCustomerCreatePv; /** * 商品老客户订单创建人数 */ @JsonProperty("repeated_customer_create_uv") private Long repeatedCustomerCreateUv; /** * 商品老客户订单创建次数 */ @JsonProperty("repeated_customer_create_pv") private Long repeatedCustomerCreatePv; /** * 商品库存 */ @JsonProperty("stock") private Long stock; /** * 商品退费率 */ @JsonProperty("refund_rate") private Double refundRate; /** * 商品完成订单数 */ @JsonProperty("finish_pv") private Long finishPv; /** * 商品未完成订单数 */ @JsonProperty("no_finish_pv") private Long noFinishPv; /** * 商品新客户转换率 */ @JsonProperty("new_customer_conversion_rate") private Double newCustomerConversionRate; /** * 商品讲解数 */ @JsonProperty("explanation_count") private Long explanationCount; }
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/LiveDataResponse.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDataResponse.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; /** * 获取直播大屏数据响应 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @NoArgsConstructor @EqualsAndHashCode(callSuper = true) public class LiveDataResponse extends WxChannelBaseResponse { private static final long serialVersionUID = - 8416743234527598719L; /** * 追踪ID,报bug带 */ @JsonProperty("trace_id") private String traceId; /** * 直播大屏基础数据 */ @JsonProperty("live_dashboard_data") private LiveDashboardData liveDashboardData; /** * 内容力数据 */ @JsonProperty("live_comparison_index") private LiveComparisonIndex liveComparisonIndex; /** * 电商数据概要数据 */ @JsonProperty("live_ec_data_summary") private LiveEcDataSummary liveEcDataSummary; /** * 电商转化力数据 */ @JsonProperty("live_ec_conversion_metric") private LiveEcConversionMetric liveEcConversionMetric; /** * 电商画像数据 */ @JsonProperty("live_ec_profile") private LiveEcProfile liveEcProfile; /** * 电商渠道分布 */ @JsonProperty("live_distribution_channel") private LiveDistributionChannel liveDistributionChannel; /** * 电商商品数据 */ @JsonProperty("single_live_ec_spu_data_page_v2") private SingleLiveEcSpuDataPageV2 singleLiveEcSpuDataPageV2; }
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/DataNodeList.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/DataNodeList.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 DataNodeList implements Serializable { private static final long serialVersionUID = - 497502210938812386L; /** * 细分类别的名称,如 "女"、"30-39岁"、"天津市" */ @JsonProperty("key") private String key; /** * 包含具体的统计数值 */ @JsonProperty("row") private DataNode 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/Ended.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/Ended.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 Ended implements Serializable { private static final long serialVersionUID = 576815272236922652L; /** * 曝光有效CTR(万分比) */ @JsonProperty("recommend_effective_new_watch_2_uv_over_impression_uv") private EndedIndexItem recommendEffectiveNewWatch2UvOverImpressionUv; /** * 人均看播时长 */ @JsonProperty("average_watch_seconds") private EndedIndexItem averageWatchSeconds; /** * 评论率(万分比) */ @JsonProperty("comment_uv_over_new_watch_uv") private EndedIndexItem commentUvOverNewWatchUv; /** * 点赞率(万分比) */ @JsonProperty("like_uv_over_new_watch_uv") private EndedIndexItem likeUvOverNewWatchUv; }
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/Dimension.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/Dimension.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 Dimension implements Serializable { private static final long serialVersionUID = - 1879006149576217182L; /** * 维度的类型 {@link me.chanjar.weixin.channel.enums.DimensionType} */ @JsonProperty("type") private Integer type; /** * 维度标签 */ @JsonProperty("ux_label") private String uxLabel; /** * 维度值 */ @JsonProperty("dimension_value") private Long dimensionValue; }
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/LiveDistributionChannel.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDistributionChannel.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 LiveDistributionChannel implements Serializable { private static final long serialVersionUID = - 5898886208775573377L; /** * 客户数 */ @JsonProperty("audience_count") private Long audienceCount; /** * 总进入直播数 */ @JsonProperty("total_joinlive_count") private Long totalJoinliveCount; /** * 按场景划分的渠道分析统计值 */ @JsonProperty("live_dist_channel_source_by_scene_stats") private List<LiveDistributionSceneStat> liveDistChannelSourceBySceneStats; /** * 按照流量类型、渠道层级划分的渠道分析统计数据 */ @JsonProperty("live_dist_channel_source_stats") private List<LiveDistributionByFlowTypeStat> liveDistChannelSourceStats; /** * 数据版本(无实际意义) */ @JsonProperty("data_key") private List<String> dataKey; }
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/LiveDataParam.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDataParam.java
package me.chanjar.weixin.channel.bean.live.dashboard; 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; /** * 获取直播大屏数据请求参数 * * @author <a href="https://github.com/Winnie-by996">Winnie</a> */ @Data @AllArgsConstructor @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_NULL) public class LiveDataParam implements Serializable { private static final long serialVersionUID = 6346941931704153857L; /** * 直播唯一ID */ @JsonProperty("export_id") private String exportId; }
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/LiveDistributionSceneStat.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDistributionSceneStat.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 LiveDistributionSceneStat implements Serializable { private static final long serialVersionUID = 4261140121141859416L; /** * 场景类型 {@link me.chanjar.weixin.channel.enums.LiveDistributionSceneType} */ @JsonProperty("scene_type") private Integer sceneType; /** * 该场景下的渠道分析统计值 */ @JsonProperty("dist_flow_type_stats") private List<LiveDistributionByFlowTypeStat> distFlowTypeStats; /** * 指标值总数 */ @JsonProperty("metric_value_total") private Long metricValueTotal; /** * GMV总值(单位:分) */ @JsonProperty("gmv") private Long gmv; /** * UV总值 */ @JsonProperty("uv") private Long uv; /** * 千次看播成交(单位: 分) */ @JsonProperty("gmv_per_uv") private Long gmvPerUv; /** * 指标值 */ @JsonProperty("metric_value") private Long metricValue; /** * 在该渠道下的统计值比率 */ @JsonProperty("metric_value_ratio") private Double metricValueRatio; /** * pv */ @JsonProperty("pv") private Long pv; }
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/DataNodeSecondList.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/DataNodeSecondList.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 DataNodeSecondList implements Serializable { private static final long serialVersionUID = 42973481125049275L; /** * 每个分类对象都有一个 key,表示分类的名称,例如 "sex_distribution"、"age_distribution" {@link me.chanjar.weixin.channel.enums.EcProfileDataNodeKey} */ @JsonProperty("key") private String key; /** * 进一步细分该分类下的数据 */ @JsonProperty("row") private List<DataNodeList> 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/LiveEcProfile.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveEcProfile.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 LiveEcProfile implements Serializable { private static final long serialVersionUID = 1996741772652344438L; /** * 包含不同用户群体的统计数据 */ @JsonProperty("profiles") private List<DataNodeThirdList> profiles; /** * 总体数据统计信息 */ @JsonProperty("totals") private List<DataNodeList> totals; }
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/LiveDistChannelSourceStats.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDistChannelSourceStats.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 LiveDistChannelSourceStats implements Serializable { private static final long serialVersionUID = - 6802106934852140579L; /** * 渠道层级 */ @JsonProperty("level") private Integer level; /** * 来源渠道ID */ @JsonProperty("source_channel_id") private Long sourceChannelId; /** * 流量来源子渠道指标数据统计值 */ @JsonProperty("sub_channel_source_stats") private List<SubLiveDistChannelSourceStats> subChannelSourceStats; /** * GMV总值(单位:分) */ @JsonProperty("gmv") private Long gmv; /** * UV总值 */ @JsonProperty("uv") private Long uv; /** * 千次看播成交(单位: 分)(GPV) */ @JsonProperty("gmv_per_uv") private Long gmvPerUv; /** * gmv占比 */ @JsonProperty("gmv_ratio") private Double gmvRatio; /** * uv占比 */ @JsonProperty("uv_ratio") private Double uvRatio; /** * 渠道名称 */ @JsonProperty("source_channel_name") private String sourceChannelName; /** * 当前层级pv占总pv的比例 */ @JsonProperty("pv_ratio") private Double pvRatio; }
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/EndedIndexItem.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/EndedIndexItem.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 EndedIndexItem implements Serializable { private static final long serialVersionUID = 7529336638744298238L; /** * 整场直播的指标值 */ @JsonProperty("value") private Long value; /** * 整场直播该指标值打败了 xx% 的主播 */ @JsonProperty("percentile") private Integer percentile; /** * 该指标 7 天中位数 */ @JsonProperty("median_7_days") private Long median7Days; }
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/SingleLiveEcSpuDataPageV2.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/SingleLiveEcSpuDataPageV2.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 SingleLiveEcSpuDataPageV2 implements Serializable { private static final long serialVersionUID = - 761977668198342583L; /** * 商品明细数据列表 */ @JsonProperty("spu_data_list") private List<SpuData> spuDataList; /** * spu_data_list 的总长度 */ @JsonProperty("total_cnt") private Integer totalCnt; /** * 数据版本(无实际意义) */ @JsonProperty("data_key") private List<String> dataKey; }
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/LiveDashboardData2Source.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/LiveDashboardData2Source.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 LiveDashboardData2Source implements Serializable { private static final long serialVersionUID = 7347276250944913612L; /** * 观看人数的渠道分布 */ @JsonProperty("new_watch_uv") private List<Series> newWatchUv; }
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/ItemConversionMetric.java
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/live/dashboard/ItemConversionMetric.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 ItemConversionMetric implements Serializable { private static final long serialVersionUID = - 8317027740221390754L; /** * 指标值 */ @JsonProperty("metric_value") private Double metricValue; /** * 较近7天中位数 */ @JsonProperty("median_to_recent_7_days") private Double medianToRecent7Days; /** * 同行对比 */ @JsonProperty("within_industry_percentage") private Double withinIndustryPercentage; /** * 环比数据 */ @JsonProperty("quarterly_growth_rate") private QuarterlyGrowthRate quarterlyGrowthRate; }
java
Apache-2.0
84b5c4d2d0774f800237634e5d0336f53c004fe3
2026-01-04T14:46:39.499027Z
false