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/after/AfterSaleRejectReason.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectReason.java | package me.chanjar.weixin.channel.bean.after;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 拒绝售后原因
*
* @author lizhengwu
* @date 2024/7/24
*/
@Data
@NoArgsConstructor
public class AfterSaleRejectReason implements Serializable {
private static final long serialVersionUID = -3672834150982780L;
/**
* 售后拒绝原因枚举
*/
@JsonProperty("reject_reason_type")
private Integer rejectReasonType;
/**
* 售后拒绝原因说明
*/
@JsonProperty("reject_reason_type_text")
private String rejectReasonTypeText;
/**
* 售后拒绝原因默认描述
*/
@JsonProperty("reject_reason")
private String rejectReason;
/**
* 售后拒绝原因适用场景
*/
@JsonProperty("reject_scene")
private Integer rejectScene;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectExchangeReshipParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleRejectExchangeReshipParam.java | package me.chanjar.weixin.channel.bean.after;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.List;
/**
* 售后单换货拒绝发货信息
*
* @author <a href="https://gitee.com/cchengg">Chu</a>
*/
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class AfterSaleRejectExchangeReshipParam extends AfterSaleIdParam {
private static final long serialVersionUID = -7946679037747710613L;
/** 拒绝原因具体描述 ,可使用默认描述,也可以自定义描述*/
@JsonProperty("reject_reason")
private String rejectReason;
/** 拒绝原因枚举 */
@JsonProperty("reject_reason_type")
private Integer rejectReasonType;
/** 退款凭证,可使用图片上传接口获取media_id(数据类型填0)*/
@JsonProperty("reject_certificates")
private List<String> rejectCertificates;
public AfterSaleRejectExchangeReshipParam() {
}
public AfterSaleRejectExchangeReshipParam(String afterSaleOrderId, String rejectReason, Integer rejectReasonType, List<String> rejectCertificates) {
super(afterSaleOrderId);
this.rejectReason = rejectReason;
this.rejectReasonType = rejectReasonType;
this.rejectCertificates = rejectCertificates;
}
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleProductInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/after/AfterSaleProductInfo.java | package me.chanjar.weixin.channel.bean.after;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 售后相关商品信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class AfterSaleProductInfo implements Serializable {
private static final long serialVersionUID = 4205179093262757775L;
/** 商品spu id */
@JsonProperty("product_id")
private String productId;
/** 商品sku id */
@JsonProperty("sku_id")
private String skuId;
/** 售后数量 */
@JsonProperty("count")
private Integer count;
}
| 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/message/SessionMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/SessionMessage.java | package me.chanjar.weixin.channel.bean.message;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 会话消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SessionMessage extends WxChannelMessage {
private static final long serialVersionUID = -429381568555605309L;
@JsonProperty("SessionFrom")
@JacksonXmlProperty(localName = "SessionFrom")
private String from;
}
| 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/message/fund/QrNotifyInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/fund/QrNotifyInfo.java | package me.chanjar.weixin.channel.bean.message.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 提现二维码回调 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class QrNotifyInfo implements Serializable {
private static final long serialVersionUID = 2470016408300157273L;
/** 二维码ticket */
@JsonProperty("ticket")
@JacksonXmlProperty(localName = "ticket")
private String ticket;
/** 二维码状态,1.已确认 2.已取消 3.已失效 4.已扫码 */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
/** 扫码者身份, 0.非管理员 1.管理员 */
@JsonProperty("scan_user_type")
@JacksonXmlProperty(localName = "scan_user_type")
private Integer scanUserType;
}
| 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/message/fund/WithdrawNotifyInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/fund/WithdrawNotifyInfo.java | package me.chanjar.weixin.channel.bean.message.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 提现通知信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class WithdrawNotifyInfo implements Serializable {
private static final long serialVersionUID = 2987401114254821956L;
/** 1.发起提现,生成二维码 2.扫码验证成功,申请提现 3.提现成功 4.提现失败 */
@JsonProperty("event")
@JacksonXmlProperty(localName = "event")
private Integer event;
/** 提现单号 */
@JsonProperty("withdraw_id")
@JacksonXmlProperty(localName = "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/message/fund/BankNotifyInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/fund/BankNotifyInfo.java | package me.chanjar.weixin.channel.bean.message.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 账户信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class BankNotifyInfo implements Serializable {
private static final long serialVersionUID = 4192569196686180014L;
/** 结算账户变更事件, 1.修改结算账户 */
@JsonProperty("event")
@JacksonXmlProperty(localName = "event")
private Integer event;
}
| 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/message/fund/WithdrawNotifyMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/fund/WithdrawNotifyMessage.java | package me.chanjar.weixin.channel.bean.message.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 账户变更通知 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class WithdrawNotifyMessage extends WxChannelMessage {
private static final long serialVersionUID = -2504086242143523430L;
/** 账户信息 */
@JsonProperty("withdraw_info")
@JacksonXmlProperty(localName = "withdraw_info")
private WithdrawNotifyInfo withdrawInfo;
}
| 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/message/fund/QrNotifyMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/fund/QrNotifyMessage.java | package me.chanjar.weixin.channel.bean.message.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 提现二维码回调 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class QrNotifyMessage extends WxChannelMessage {
private static final long serialVersionUID = -4705790895359679423L;
/** 账户信息 */
@JsonProperty("qrcode_info")
@JacksonXmlProperty(localName = "qrcode_info")
private QrNotifyInfo qrcodeInfo;
}
| 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/message/fund/AccountNotifyMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/fund/AccountNotifyMessage.java | package me.chanjar.weixin.channel.bean.message.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 账户变更通知 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class AccountNotifyMessage extends WxChannelMessage {
private static final long serialVersionUID = 3846692537729725664L;
/** 账户信息 */
@JsonProperty("account_info")
@JacksonXmlProperty(localName = "account_info")
private BankNotifyInfo accountInfo;
}
| 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/message/product/SpuStockMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/product/SpuStockMessage.java | package me.chanjar.weixin.channel.bean.message.product;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* SPU库存不足消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SpuStockMessage extends WxChannelMessage {
private static final long serialVersionUID = 2250860804161527363L;
/** 商品id */
@JsonProperty("product_id")
@JacksonXmlProperty(localName = "product_id")
private String productId;
/** 平台商品id */
@JsonProperty("sku_id")
@JacksonXmlProperty(localName = "sku_id")
private String skuId;
/** 剩余库存:当前实时库存数量 */
@JsonProperty("remaining_stock_amount")
@JacksonXmlProperty(localName = "remaining_stock_amount")
private Long remainingStockAmount;
/** 未发放的预存code数【该字段对code_source_type=2的团购优惠生效,其他类型该字段值为0】 */
@JsonProperty("remaining_code_amount")
@JacksonXmlProperty(localName = "remaining_code_amount")
private Long remainingCodeAmount;
/** ChannelsEcStockNoEnough */
@JsonProperty("channels_ec_stock_no_enough")
@JacksonXmlProperty(localName = "channels_ec_stock_no_enough")
private void stockNoEnough(Map<String, Object> map) {
this.unpackNameFromNestedObject(map);
}
/**
* 从嵌套对象中解析字段
*
* @param map 嵌套对象
*/
protected void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("product_id");
if (obj != null) {
this.productId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("sku_id");
if (obj != null) {
this.skuId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("remaining_stock_amount");
if (obj != null) {
if (obj instanceof Number) {
this.remainingStockAmount = ((Number) obj).longValue();
} else if (obj instanceof String) {
this.remainingStockAmount = Long.parseLong((String) obj);
}
}
obj = map.get("remaining_code_amount");
if (obj != null) {
if (obj instanceof Number) {
this.remainingCodeAmount = ((Number) obj).longValue();
} else if (obj instanceof String) {
this.remainingCodeAmount = Long.parseLong((String) obj);
}
}
}
}
| 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/message/product/BrandMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/product/BrandMessage.java | package me.chanjar.weixin.channel.bean.message.product;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 品牌消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class BrandMessage extends WxChannelMessage {
private static final long serialVersionUID = -3773902704930003105L;
/** 品牌库中的品牌编号 */
@JsonProperty("brand_id")
@JacksonXmlProperty(localName = "brand_id")
private String brandId;
/** 审核id */
@JsonProperty("audit_id")
@JacksonXmlProperty(localName = "audit_id")
private String auditId;
/** 审核状态, 1新增品牌 2更新品牌 3撤回品牌审核 4审核成功 5审核失败 6删除品牌 7品牌资质被系统撤销 */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
/** 相关信息 */
@JsonProperty("reason")
@JacksonXmlProperty(localName = "reason")
private String reason;
@JsonProperty("BrandEvent")
@JacksonXmlProperty(localName = "BrandEvent")
private void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("brand_id");
if (obj != null) {
this.brandId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("audit_id");
if (obj != null) {
this.auditId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("status");
if (obj != null) {
if (obj instanceof Integer) {
this.status = (Integer) obj;
} else if (obj instanceof String) {
this.status = Integer.parseInt((String) obj);
}
}
obj = map.get("reason");
if (obj != null) {
this.reason = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
}
}
| 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/message/product/SpuAuditMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/product/SpuAuditMessage.java | package me.chanjar.weixin.channel.bean.message.product;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* SPU审核消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SpuAuditMessage extends WxChannelMessage {
private static final long serialVersionUID = 1763291928383078102L;
/** 商品id */
@JsonProperty("product_id")
@JacksonXmlProperty(localName = "product_id")
private String productId;
/**
* 审核状态, 2:审核不通过;3:审核通过 商品状态, 5:上架;11:自主下架;13:系统下架
*/
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
/** 审核/下架原因,非必填字段 */
@JsonProperty("reason")
@JacksonXmlProperty(localName = "reason")
private String reason;
@JsonProperty("ProductSpuAudit")
@JacksonXmlProperty(localName = "ProductSpuAudit")
public void ProductSpuAudit(Map<String, Object> map) {
this.unpackNameFromNestedObject(map);
}
@JsonProperty("ProductSpuUpdate")
@JacksonXmlProperty(localName = "ProductSpuUpdate")
public void ProductSpuUpdate(Map<String, Object> map) {
this.unpackNameFromNestedObject(map);
}
@JsonProperty("ProductSpuListing")
@JacksonXmlProperty(localName = "ProductSpuListing")
public void ProductSpuListing(Map<String, Object> map) {
this.unpackNameFromNestedObject(map);
}
private void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("product_id");
if (obj != null) {
this.productId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("status");
if (obj != null) {
if (obj instanceof Integer) {
this.status = (Integer) obj;
} else if (obj instanceof String) {
this.status = Integer.parseInt((String) obj);
}
}
obj = map.get("reason");
if (obj != null) {
this.reason = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
}
}
| 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/message/product/CategoryAuditMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/product/CategoryAuditMessage.java | package me.chanjar.weixin.channel.bean.message.product;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 类目审核消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class CategoryAuditMessage extends WxChannelMessage {
private static final long serialVersionUID = 3192582751919917223L;
/** 审核id */
@JsonProperty("audit_id")
@JacksonXmlProperty(localName = "audit_id")
private String auditId;
/** 审核状态, 1:审核中, 2:审核拒绝, 3:审核通过, 12:主动取消申请单 */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
/** 相关信息 */
@JsonProperty("reason")
@JacksonXmlProperty(localName = "reason")
private String reason;
@JsonProperty("ProductCategoryAudit")
@JacksonXmlProperty(localName = "ProductCategoryAudit")
private void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("audit_id");
if (obj != null) {
this.auditId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("status");
if (obj != null) {
if (obj instanceof Integer) {
this.status = (Integer) obj;
} else if (obj instanceof String) {
this.status = Integer.parseInt((String) obj);
}
}
obj = map.get("reason");
if (obj != null) {
this.reason = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
}
}
| 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/message/product/SpuStatusMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/product/SpuStatusMessage.java | package me.chanjar.weixin.channel.bean.message.product;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* SPU状态消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SpuStatusMessage extends WxChannelMessage {
private static final long serialVersionUID = 6872830451279856492L;
/** 商家自定义商品id */
@JsonProperty("out_product_id")
@JacksonXmlProperty(localName = "out_product_id")
private String outProductId;
/** 平台商品id */
@JsonProperty("product_id")
@JacksonXmlProperty(localName = "product_id")
private String productId;
/** 当前商品上下架状态 参考 {@link me.chanjar.weixin.channel.enums.SpuStatus } */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
/** 相关信息 */
@JsonProperty("reason")
@JacksonXmlProperty(localName = "reason")
private String reason;
@JsonProperty("OpenProductSpuStatusUpdate")
@JacksonXmlProperty(localName = "OpenProductSpuStatusUpdate")
private void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("out_product_id");
if (obj != null) {
this.outProductId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("product_id");
if (obj != null) {
this.productId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("status");
if (obj != null) {
if (obj instanceof Integer) {
this.status = (Integer) obj;
} else if (obj instanceof String) {
this.status = Integer.parseInt((String) obj);
}
}
obj = map.get("reason");
if (obj != null) {
this.reason = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
}
}
| 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/message/coupon/CouponActionInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/coupon/CouponActionInfo.java | package me.chanjar.weixin.channel.bean.message.coupon;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 优惠券操作消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class CouponActionInfo implements Serializable {
private static final long serialVersionUID = -4456716511656569552L;
/** 优惠券ID */
@JsonProperty("coupon_id")
@JacksonXmlProperty(localName = "coupon_id")
private String couponId;
/** 领券时间 */
@JsonProperty("create_time")
@JacksonXmlProperty(localName = "create_time")
private String createTime;
/** 删除时间 */
@JsonProperty("delete_time")
@JacksonXmlProperty(localName = "delete_time")
private String deleteTime;
/** 过期时间 */
@JsonProperty("expire_time")
@JacksonXmlProperty(localName = "expire_time")
private String expireTime;
/** 更新时间 */
@JsonProperty("change_time")
@JacksonXmlProperty(localName = "change_time")
private String changeTime;
/** 作废时间 */
@JsonProperty("invalid_time")
@JacksonXmlProperty(localName = "invalid_time")
private String invalidTime;
}
| 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/message/coupon/CouponReceiveMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/coupon/CouponReceiveMessage.java | package me.chanjar.weixin.channel.bean.message.coupon;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 用户领券 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class CouponReceiveMessage extends WxChannelMessage {
private static final long serialVersionUID = 5121347165246528730L;
/** 领取的优惠券ID */
@JsonProperty("coupon_id")
@JacksonXmlProperty(localName = "coupon_id")
private String couponId;
/** 生成的用户券ID */
@JsonProperty("user_coupon_id")
@JacksonXmlProperty(localName = "user_coupon_id")
private String userCouponId;
/** 领券时间 */
@JsonProperty("receive_time")
@JacksonXmlProperty(localName = "receive_time")
private String receiveTime;
@JsonProperty("receive_info")
@JacksonXmlProperty(localName = "receive_info")
private void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("coupon_id");
if (obj != null) {
this.couponId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("user_coupon_id");
if (obj != null) {
this.userCouponId = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
obj = map.get("receive_time");
if (obj != null) {
this.receiveTime = (obj instanceof String ? (String) obj : String.valueOf(obj));
}
}
}
| 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/message/coupon/CouponActionMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/coupon/CouponActionMessage.java | package me.chanjar.weixin.channel.bean.message.coupon;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 卡券操作 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class CouponActionMessage extends WxChannelMessage {
private static final long serialVersionUID = 4910461800721504462L;
/** 优惠券信息 */
@JsonProperty("coupon_info")
@JacksonXmlProperty(localName = "coupon_info")
private CouponActionInfo couponInfo;
}
| 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/message/coupon/UserCouponUseMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/coupon/UserCouponUseMessage.java | package me.chanjar.weixin.channel.bean.message.coupon;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 用户卡券使用 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class UserCouponUseMessage extends WxChannelMessage {
private static final long serialVersionUID = -1051142666438578628L;
/** 用户优惠券信息 */
@JsonProperty("user_info")
@JacksonXmlProperty(localName = "user_info")
private UserCouponActionInfo userCouponInfo;
}
| 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/message/coupon/UserCouponExpireMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/coupon/UserCouponExpireMessage.java | package me.chanjar.weixin.channel.bean.message.coupon;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 用户卡券过期 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class UserCouponExpireMessage extends WxChannelMessage {
private static final long serialVersionUID = -2557475297107588372L;
/** 用户优惠券信息 */
@JsonProperty("user_coupon_info")
@JacksonXmlProperty(localName = "user_coupon_info")
private UserCouponActionInfo userCouponInfo;
}
| 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/message/coupon/UserCouponActionInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/coupon/UserCouponActionInfo.java | package me.chanjar.weixin.channel.bean.message.coupon;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 用户优惠券操作消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class UserCouponActionInfo implements Serializable {
private static final long serialVersionUID = -5948836918972669529L;
/** 优惠券ID */
@JsonProperty("coupon_id")
@JacksonXmlProperty(localName = "coupon_id")
private String couponId;
/** 用户券ID */
@JsonProperty("user_coupon_id")
@JacksonXmlProperty(localName = "user_coupon_id")
private String userCouponId;
/** 过期时间 */
@JsonProperty("expire_time")
@JacksonXmlProperty(localName = "expire_time")
private String expireTime;
/** 使用时间 */
@JsonProperty("use_time")
@JacksonXmlProperty(localName = "use_time")
private String useTime;
/** 返还时间 */
@JsonProperty("unuse_time")
@JacksonXmlProperty(localName = "unuse_time")
private String unuseTime;
}
| 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/message/supplier/SupplierItemMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/supplier/SupplierItemMessage.java | package me.chanjar.weixin.channel.bean.message.supplier;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 团长商品变更 消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SupplierItemMessage extends WxChannelMessage {
private static final long serialVersionUID = -4520611382070764349L;
/** 账户信息 */
@JsonProperty("item_info")
@JacksonXmlProperty(localName = "item_info")
private SupplierItemInfo itemInfo;
}
| 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/message/supplier/SupplierItemInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/supplier/SupplierItemInfo.java | package me.chanjar.weixin.channel.bean.message.supplier;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
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 SupplierItemInfo implements Serializable {
private static final long serialVersionUID = -1971161027976024360L;
/** 商品变更类型,1:新增商品;2:更新商品 */
@JsonProperty("event_type")
@JacksonXmlProperty(localName = "event_type")
private Integer eventType;
/** 团长商品所属小店appid */
@JsonProperty("appid")
@JacksonXmlProperty(localName = "appid")
private String appid;
/** 商品id */
@JsonProperty("product_id")
@JacksonXmlProperty(localName = "product_id")
private String productId;
/** 商品版本号 */
@JsonProperty("version")
@JacksonXmlProperty(localName = "version")
private String version;
/** 商品更新字段,当event_type = 2时有值。commission_ratio、service_ratio、status、active_time分别表示佣金、服务费、商品状态和合作生效时间有变更 */
@JsonProperty("update_fields")
@JacksonXmlProperty(localName = "update_fields")
private List<String> updateFields;
}
| 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/message/store/NicknameUpdateMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/store/NicknameUpdateMessage.java | package me.chanjar.weixin.channel.bean.message.store;
/**
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 小店修改名称消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class NicknameUpdateMessage extends WxChannelMessage {
private static final long serialVersionUID = 7619787772418774020L;
/** appid */
@JsonProperty("appid")
@JacksonXmlProperty(localName = "appid")
private String appid;
/** 小店旧昵称 */
@JsonProperty("old_nickname")
@JacksonXmlProperty(localName = "old_nickname")
private String oldNickname;
/** 小店新昵称 */
@JsonProperty("new_nickname")
@JacksonXmlProperty(localName = "new_nickname")
private String newNickname;
}
| 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/message/store/CloseStoreMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/store/CloseStoreMessage.java | package me.chanjar.weixin.channel.bean.message.store;
/**
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 小店注销消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class CloseStoreMessage extends WxChannelMessage {
private static final long serialVersionUID = 7619787772418774020L;
/** appid */
@JsonProperty("appid")
@JacksonXmlProperty(localName = "appid")
private String appid;
/** Unix时间戳,即格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数 */
@JsonProperty("close_timestamp")
@JacksonXmlProperty(localName = "close_timestamp")
private Long closeTimestamp;
}
| 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/message/order/OrderExtMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderExtMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单状态消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderExtMessage extends WxChannelMessage {
private static final long serialVersionUID = -3183077256476798756L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderExtInfo orderInfo;
}
| 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/message/order/OrderIdMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderIdMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单id消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderIdMessage extends WxChannelMessage {
private static final long serialVersionUID = 3793987364799712798L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderIdInfo orderInfo;
}
| 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/message/order/OrderConfirmMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderConfirmMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单确认收货消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderConfirmMessage extends WxChannelMessage {
private static final long serialVersionUID = 4219477394934480425L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderConfirmInfo orderInfo;
}
| 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/message/order/OrderPayInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderPayInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* 订单支付信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderPayInfo extends OrderIdInfo {
private static final long serialVersionUID = -3502786073769735831L;
/** 支付时间,秒级时间戳 */
@JsonProperty("pay_time")
@JacksonXmlProperty(localName = "pay_time")
private Long payTime;
}
| 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/message/order/OrderIdInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderIdInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 订单id信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class OrderIdInfo implements Serializable {
private static final long serialVersionUID = 5547544436235032051L;
/** 订单ID */
@JsonProperty("order_id")
@JacksonXmlProperty(localName = "order_id")
private String orderId;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderExtInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderExtInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* 订单其他信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderExtInfo extends OrderIdInfo {
private static final long serialVersionUID = 4723533858047219828L;
/** 类型 1:联盟佣金信息 */
@JsonProperty("type")
@JacksonXmlProperty(localName = "type")
private Integer type;
}
| 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/message/order/OrderPayMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderPayMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单支付成功消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderPayMessage extends WxChannelMessage {
private static final long serialVersionUID = 1083018549119427808L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderPayInfo orderInfo;
}
| 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/message/order/OrderDeliveryMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderDeliveryMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单发货消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderDeliveryMessage extends WxChannelMessage {
private static final long serialVersionUID = -1440834047566984402L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderDeliveryInfo orderInfo;
}
| 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/message/order/OrderSettleMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderSettleMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单结算消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderSettleMessage extends WxChannelMessage {
private static final long serialVersionUID = -4001189226630840548L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderSettleInfo orderInfo;
}
| 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/message/order/OrderStatusMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderStatusMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单状态消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderStatusMessage extends WxChannelMessage {
private static final long serialVersionUID = -356717038344749283L;
/** 订单ID */
@JsonProperty("order_id")
@JacksonXmlProperty(localName = "order_id")
private String orderId;
/** 订单状态 {@link me.chanjar.weixin.channel.enums.WxOrderStatus} */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
@JsonProperty("ProductOrderStatusUpdate")
@JacksonXmlProperty(localName = "ProductOrderStatusUpdate")
private void unpackNameFromNestedObject(Map<String, Object> map) {
if (map == null) {
return;
}
Object obj = null;
obj = map.get("order_id");
if (obj != null) {
this.orderId = obj.toString();
}
obj = map.get("status");
if (obj != null) {
if (obj instanceof Integer) {
this.status = (Integer) obj;
} else if (obj instanceof String) {
this.status = Integer.parseInt((String) obj);
}
}
}
}
| 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/message/order/OrderCancelMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderCancelMessage.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 订单取消消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class OrderCancelMessage extends WxChannelMessage {
private static final long serialVersionUID = 5389546516473919310L;
/** 订单信息 */
@JsonProperty("order_info")
@JacksonXmlProperty(localName = "order_info")
private OrderCancelInfo orderInfo;
}
| 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/message/order/OrderConfirmInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderConfirmInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* 订单确认收货信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderConfirmInfo extends OrderIdInfo {
private static final long serialVersionUID = -2569494642832261346L;
/** 1:用户确认收货;2:超时自动确认收货 */
@JsonProperty("confirm_type")
@JacksonXmlProperty(localName = "confirm_type")
private Integer confirmType;
}
| 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/message/order/OrderDeliveryInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderDeliveryInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* 订单发货信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderDeliveryInfo extends OrderIdInfo {
private static final long serialVersionUID = 117962754344887556L;
/** 0:尚未全部发货;1:全部商品发货完成 */
@JsonProperty("finish_delivery")
@JacksonXmlProperty(localName = "finish_delivery")
private Integer finishDelivery;
}
| 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/message/order/OrderSettleInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderSettleInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* 订单结算信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderSettleInfo extends OrderIdInfo {
private static final long serialVersionUID = -1817955568383872053L;
/** 结算时间 */
@JsonProperty("settle_time")
@JacksonXmlProperty(localName = "settle_time")
private Long settleTime;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderCancelInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/order/OrderCancelInfo.java | package me.chanjar.weixin.channel.bean.message.order;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
/**
* 订单取消信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class OrderCancelInfo extends OrderIdInfo {
private static final long serialVersionUID = -8022876997578127873L;
/** 1:用户取消;2:超时取消;3:全部商品售后完成,订单取消;4:超卖商家取消订单 */
@JsonProperty("cancel_type")
@JacksonXmlProperty(localName = "cancel_type")
private Integer cancelType;
}
| 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/message/sharer/SharerChangeMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/sharer/SharerChangeMessage.java | package me.chanjar.weixin.channel.bean.message.sharer;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 分享员变更消息
* https://developers.weixin.qq.com/doc/channels/API/sharer/callback/channels_ec_sharer_change.html
*
* @author sd-hxf
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class SharerChangeMessage extends WxChannelMessage {
private static final long serialVersionUID = 4219477394934480421L;
/**
* 分享员OpenID
*/
@JsonProperty("openid")
@JacksonXmlProperty(localName = "openid")
private String openid;
/**
* 分享员类型:0-普通分享员,1-店铺分享员
*/
@JsonProperty("sharer_type")
@JacksonXmlProperty(localName = "sharer_type")
private Integer sharerType;
/**
* 分享员绑定状态:1-绑定,2-解绑
*/
@JsonProperty("bind_status")
@JacksonXmlProperty(localName = "bind_status")
private Integer bindStatus;
}
| 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/message/after/AfterSaleMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/after/AfterSaleMessage.java | package me.chanjar.weixin.channel.bean.message.after;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 售后消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class AfterSaleMessage extends WxChannelMessage {
private static final long serialVersionUID = -7263404451639198126L;
/** 状态信息 */
@JsonProperty("finder_shop_aftersale_status_update")
@JacksonXmlProperty(localName = "finder_shop_aftersale_status_update")
private AfterSaleStatusInfo info;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/after/ComplaintMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/after/ComplaintMessage.java | package me.chanjar.weixin.channel.bean.message.after;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 纠纷消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class ComplaintMessage extends WxChannelMessage {
private static final long serialVersionUID = 5358093415172409157L;
/** 状态信息 */
@JsonProperty("finder_shop_complaint")
@JacksonXmlProperty(localName = "finder_shop_complaint")
private ComplaintInfo info;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/after/ComplaintInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/after/ComplaintInfo.java | package me.chanjar.weixin.channel.bean.message.after;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 纠纷信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class ComplaintInfo implements Serializable {
private static final long serialVersionUID = 3988395560953978239L;
/** 纠纷单号 */
@JsonProperty("complaint_id")
@JacksonXmlProperty(localName = "complaint_id")
private String complaintId;
/** 小店售后单号 */
@JsonProperty("after_sale_order_id")
@JacksonXmlProperty(localName = "after_sale_order_id")
private String afterSaleOrderId;
/** 纠纷单状态 */
@JsonProperty("status")
@JacksonXmlProperty(localName = "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/message/after/AfterSaleStatusInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/after/AfterSaleStatusInfo.java | package me.chanjar.weixin.channel.bean.message.after;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 售后信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class AfterSaleStatusInfo implements Serializable {
private static final long serialVersionUID = -7309656340583314591L;
/** 售后单号 */
@JsonProperty("after_sale_order_id")
@JacksonXmlProperty(localName = "after_sale_order_id")
private String afterSaleOrderId;
/** 售后单状态 */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private String status;
/** 订单id */
@JsonProperty("order_id")
@JacksonXmlProperty(localName = "order_id")
private String orderId;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/voucher/VoucherMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/voucher/VoucherMessage.java | package me.chanjar.weixin.channel.bean.message.voucher;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.List;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 发放团购优惠成功消息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class VoucherMessage extends WxChannelMessage {
private static final long serialVersionUID = 975858675917036089L;
/** 发放团购优惠成功消息 */
@JsonProperty("voucher_list")
@JacksonXmlProperty(localName = "voucher_list")
private List<VoucherInfo> voucherInfo;
}
| 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/message/voucher/VoucherInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/voucher/VoucherInfo.java | package me.chanjar.weixin.channel.bean.message.voucher;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class VoucherInfo implements Serializable {
private static final long serialVersionUID = 6007964849358969438L;
/** 券code */
@JsonProperty("code")
@JacksonXmlProperty(localName = "code")
private String code;
/** 劵码类型,1商户实时code 2户预存 3平台生成 */
@JsonProperty("code_type")
@JacksonXmlProperty(localName = "code_type")
private Integer codeType;
/** 券状态 */
@JsonProperty("status")
@JacksonXmlProperty(localName = "status")
private Integer status;
/** 发放时间,时间戳 */
@JsonProperty("send_time")
@JacksonXmlProperty(localName = "send_time")
private Long sendTime;
/** 最近更新时间,时间戳 */
@JsonProperty("update_time")
@JacksonXmlProperty(localName = "update_time")
private Long updateTime;
/** 核销生效时间,时间戳 */
@JsonProperty("start_time")
@JacksonXmlProperty(localName = "start_time")
private Long startTime;
/** 核销结束时间,时间戳 */
@JsonProperty("end_time")
@JacksonXmlProperty(localName = "end_time")
private Long endTime;
/** 核销时间,时间戳。次卡时不返回此字段 */
@JsonProperty("consume_time")
@JacksonXmlProperty(localName = "consume_time")
private Long consumeTime;
/** 退券时间,时间戳。次卡时不返回此字段 */
@JsonProperty("refund_time")
@JacksonXmlProperty(localName = "refund_time")
private Long refundTime;
/** 核销门店名称 */
@JsonProperty("consume_store_name")
@JacksonXmlProperty(localName = "consume_store_name")
private String consumeStoreName;
/** */
@JsonProperty("voucher_type")
@JacksonXmlProperty(localName = "voucher_type")
private Integer voucherType;
/** 券的售卖价格(分) */
@JsonProperty("voucher_buy_amount")
@JacksonXmlProperty(localName = "voucher_buy_amount")
private Integer voucherBuyAmount;
/** 券市场金额(分) */
@JsonProperty("voucher_actual_amount")
@JacksonXmlProperty(localName = "voucher_actual_amount")
private Integer voucherActualAmount;
/** 用户手机号 */
@JsonProperty("telphone_no")
@JacksonXmlProperty(localName = "telphone_no")
private String telPhoneNo;
/** 商品id */
@JsonProperty("product_id")
@JacksonXmlProperty(localName = "product_id")
private String productId;
/** 商品下的skuId */
@JsonProperty("sku_id")
@JacksonXmlProperty(localName = "sku_id")
private String skuId;
/** 购买券的订单id */
@JsonProperty("order_id")
@JacksonXmlProperty(localName = "order_id")
private String orderId;
/** 用户在商家品牌appid下的openid */
@JsonProperty("openid")
@JacksonXmlProperty(localName = "openid")
private String openId;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/ExchangeInfoMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/ExchangeInfoMessage.java | package me.chanjar.weixin.channel.bean.message.vip;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 积分兑换消息
*
* @author <a href="https://github.com/asushiye">asushiye</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class ExchangeInfoMessage extends WxChannelMessage {
private static final long serialVersionUID = 2926346100146724110L;
/** 积分兑换信息 */
@JsonProperty("exchange_info")
@JacksonXmlProperty(localName = "exchange_info")
private ExchangeInfo exchangeInfo;
}
| 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/message/vip/UserInfoMessage.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/UserInfoMessage.java | package me.chanjar.weixin.channel.bean.message.vip;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.message.WxChannelMessage;
/**
* 用户信息消息
*
* @author <a href="https://github.com/asushiye">asushiye</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JacksonXmlRootElement(localName = "xml")
public class UserInfoMessage extends WxChannelMessage {
private static final long serialVersionUID = 6926608689621530622L;
/** 用户信息 */
@JsonProperty("user_info")
@JacksonXmlProperty(localName = "order_info")
private UserInfo userInfo;
}
| 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/message/vip/ExchangeInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/ExchangeInfo.java | package me.chanjar.weixin.channel.bean.message.vip;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 积分兑换
*
* @author <a href="https://github.com/asushiye">asushiye</a>
*/
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@NoArgsConstructor
public class ExchangeInfo implements Serializable {
private static final long serialVersionUID = -5692646625631036694L;
/** 入会时间 **/
@JsonProperty("pay_score")
@JacksonXmlProperty(localName = "pay_score")
private Long pay_score;
/** 兑换类型 1.优惠券 2商品 **/
@JsonProperty("score_item_type")
@JacksonXmlProperty(localName = "score_item_type")
private Long score_item_type;
/** 优惠券信息 **/
@JsonProperty("coupon_info")
@JacksonXmlProperty(localName = "coupon_info")
private CouponInfo couponInfo;
/** 商品信息 **/
@JsonProperty("product_info")
@JacksonXmlProperty(localName = "product_info")
private ProductInfo 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/message/vip/CouponInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/CouponInfo.java | package me.chanjar.weixin.channel.bean.message.vip;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 优惠券信息
*
* @author <a href="https://github.com/asushiye">asushiye</a>
*/
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@NoArgsConstructor
public class CouponInfo implements Serializable {
private static final long serialVersionUID = -3659710836197413932L;
/** 兑换的优惠券ID**/
@JsonProperty("related_coupon_id")
@JacksonXmlProperty(localName = "related_coupon_id")
private Long relatedCouponId;
}
| 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/message/vip/UserInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/UserInfo.java | package me.chanjar.weixin.channel.bean.message.vip;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 用户信息
*
* @author <a href="https://github.com/asushiye">asushiye</a>
*/
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@NoArgsConstructor
public class UserInfo implements Serializable {
private static final long serialVersionUID = 1239486732464880985L;
/** 入会时间 **/
@JsonProperty("join_time")
@JacksonXmlProperty(localName = "join_time")
private Long joinTime;
/** 注销时间 **/
@JsonProperty("close_time")
@JacksonXmlProperty(localName = "close_time")
private Long closeTime;
/** 手机号 **/
@JsonProperty("phone_number")
@JacksonXmlProperty(localName = "phone_number")
private String phoneNumber;
/** 等级 **/
@JsonProperty("grade")
@JacksonXmlProperty(localName = "grade")
private Integer grade;
/** 当前等级经验值 **/
@JsonProperty("experience_value")
@JacksonXmlProperty(localName = "experience_value")
private Long experienceValue;
/** 当前积分 **/
@JsonProperty("score")
@JacksonXmlProperty(localName = "score")
private Long score;
/** 本次改动积分,负数减少,正数新增 **/
@JsonProperty("delta_score")
@JacksonXmlProperty(localName = "delta_score")
private Long deltaScore;
}
| 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/message/vip/ProductInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/message/vip/ProductInfo.java | package me.chanjar.weixin.channel.bean.message.vip;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 商品信息
*
* @author <a href="https://github.com/asushiye">asushiye</a>
*/
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@NoArgsConstructor
public class ProductInfo implements Serializable {
private static final long serialVersionUID = -3037180342360944232L;
/** 兑换的商品ID**/
@JsonProperty("related_product_id")
@JacksonXmlProperty(localName = "related_product_id")
private Long relatedProductId;
}
| 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/delivery/DeliveryCompanyInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/DeliveryCompanyInfo.java | package me.chanjar.weixin.channel.bean.delivery;
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 DeliveryCompanyInfo implements Serializable {
private static final long serialVersionUID = 4225666604513570564L;
/** 快递公司id */
@JsonProperty("delivery_id")
private String id;
/** 快递公司名称 */
@JsonProperty("delivery_name")
private String name;
}
| 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/delivery/FreightProductInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/FreightProductInfo.java | package me.chanjar.weixin.channel.bean.delivery;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* 包裹中商品信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class FreightProductInfo implements Serializable {
private static final long serialVersionUID = -3751269707150372172L;
/**
* 商品id
*/
@JsonProperty("product_id")
private String productId;
/**
* sku_id
*/
@JsonProperty("sku_id")
private String skuId;
/**
* 商品数量
*/
@JsonProperty("product_cnt")
private Integer productCnt;
}
| 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/delivery/PackageAuditInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/PackageAuditInfo.java | package me.chanjar.weixin.channel.bean.delivery;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.enums.PackageAuditItemType;
/**
* 商品打包信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class PackageAuditInfo implements Serializable {
private static final long serialVersionUID = 1118087167138310282L;
/**
* 审核项名称,枚举类型参考 {@link PackageAuditItemType}
* 使用方法:DeliveryAuditItemType.EXPRESS_PIC.getKey()
*/
@JsonProperty("item_name")
private String itemName;
/** 图片/视频url */
@JsonProperty("item_value")
private String itemValue;
}
| 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/delivery/DeliveryCompanyResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/DeliveryCompanyResponse.java | package me.chanjar.weixin.channel.bean.delivery;
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 DeliveryCompanyResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = -7695903997951385166L;
/** 快递公司 */
@JsonProperty("company_list")
private List<DeliveryCompanyInfo> companyList;
}
| 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/delivery/DeliverySendParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/DeliverySendParam.java | package me.chanjar.weixin.channel.bean.delivery;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 订单发货信息
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(Include.NON_NULL)
public class DeliverySendParam implements Serializable {
private static final long serialVersionUID = 4555821308266899135L;
/** 订单ID */
@JsonProperty("order_id")
private String orderId;
/** 物流信息 */
@JsonProperty("delivery_list")
private List<DeliveryInfo> deliveryList;
}
| 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/delivery/DeliveryInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/DeliveryInfo.java | package me.chanjar.weixin.channel.bean.delivery;
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 DeliveryInfo implements Serializable {
private static final long serialVersionUID = -6205626967305385248L;
/** 快递单号 */
@JsonProperty("waybill_id")
private String waybillId;
/** 快递公司id,通过【获取快递公司列表】接口获得,非主流快递公司可以填OTHER */
@JsonProperty("delivery_id")
private String deliveryId;
/** 发货方式,1:自寄快递发货,3:虚拟商品无需物流发货(只有deliver_method=1的订单可以使用虚拟发货) */
@JsonProperty("deliver_type")
private Integer deliverType;
/** 包裹中商品信息 */
@JsonProperty("product_infos")
private List<FreightProductInfo> productInfos;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/FreshInspectParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/delivery/FreshInspectParam.java | package me.chanjar.weixin.channel.bean.delivery;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 商品打包信息 参数
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(Include.NON_NULL)
public class FreshInspectParam implements Serializable {
private static final long serialVersionUID = -1635894867602084789L;
/** 订单ID */
@JsonProperty("order_id")
private String orderId;
/** 商品打包信息 */
@JsonProperty("audit_items")
private List<PackageAuditInfo> auditItems;
}
| 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/compass/CompassFinderBaseParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/CompassFinderBaseParam.java | package me.chanjar.weixin.channel.bean.compass;
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 CompassFinderBaseParam implements Serializable {
private static final long serialVersionUID = - 4900361041041434435L;
/**
* 日期,格式 yyyyMMdd
*/
@JsonProperty("ds")
private String 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/compass/finder/ProductListResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/ProductListResponse.java | package me.chanjar.weixin.channel.bean.compass.finder;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse;
import java.util.List;
/**
* 获取带货商品列表响应
*
* @author <a href="https://github.com/Winnie-by996">Winnie</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class ProductListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 7903039293558611066L;
/**
* 带货商品列表
*/
@JsonProperty("product_list")
private List<ProductInfo> productList;
}
| 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/compass/finder/ProductDataParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/ProductDataParam.java | package me.chanjar.weixin.channel.bean.compass.finder;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.compass.CompassFinderBaseParam;
/**
* 获取带货商品数据请求参数
*
* @author <a href="https://github.com/Winnie-by996">Winnie</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ProductDataParam extends CompassFinderBaseParam {
private static final long serialVersionUID = - 5016298274452168329L;
/**
* 商品id
*/
@JsonProperty("product_id")
private String productId;
public ProductDataParam(String ds, String productId) {
super(ds);
this.productId = 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/compass/finder/Field.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/Field.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 Field implements Serializable {
private static final long serialVersionUID = - 4243469984232948689L;
/**
* 维度类别名
*/
@JsonProperty("field_name")
private String fieldName;
/**
* 维度指标数据列表
*/
@JsonProperty("data_list")
private List<FieldData> dataList;
}
| 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/compass/finder/OverallResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/OverallResponse.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 OverallResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 6350218415876820956L;
/**
* 电商概览数据
*/
@JsonProperty("data")
private Overall data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/ProductDataResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/ProductDataResponse.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 ProductDataResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 7264776818163943719L;
/**
* 带货商品数据
*/
@JsonProperty("product_info")
private ProductInfo 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/compass/finder/Overall.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/Overall.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 Overall implements Serializable {
private static final long serialVersionUID = 2456038666608345011L;
/**
* 成交金额,单位分
*/
@JsonProperty("pay_gmv")
private String payGmv;
/**
* 直播成交金额,单位分
*/
@JsonProperty("live_pay_gmv")
private String livePayGmv;
/**
* 短视频成交金额,单位分
*/
@JsonProperty("feed_pay_gmv")
private String feedPayGmv;
/**
* 橱窗成交金额,单位分
*/
@JsonProperty("window_pay_gmv")
private String windowPayGmv;
/**
* 商品分享支付金额,单位分
*/
@JsonProperty("product_pay_gmv")
private String productPayGmv;
/**
* 其他渠道成交金额,单位分
*/
@JsonProperty("other_pay_gmv")
private String otherPayGmv;
}
| 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/compass/finder/SaleProfileData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/SaleProfileData.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 SaleProfileData implements Serializable {
private static final long serialVersionUID = - 5542602540358792014L;
/**
* 维度数据列表
*/
@JsonProperty("field_list")
private List<Field> fieldList;
}
| 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/compass/finder/ProductCompassData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/ProductCompassData.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 ProductCompassData implements Serializable {
private static final long serialVersionUID = - 1009289493985863096L;
/**
* 成交金额
*/
@JsonProperty("pay_gmv")
private String payGmv;
/**
* 下单金额(单位:分)
*/
@JsonProperty("create_gmv")
private String createGmv;
/**
* 下单订单数
*/
@JsonProperty("create_cnt")
private String createCnt;
/**
* 下单人数
*/
@JsonProperty("create_uv")
private String createUv;
/**
* 下单件数
*/
@JsonProperty("create_product_cnt")
private String createProductCnt;
/**
* 成交订单数
*/
@JsonProperty("pay_cnt")
private String payCnt;
/**
* 成交人数
*/
@JsonProperty("pay_uv")
private String payUv;
/**
* 成交件数
*/
@JsonProperty("pay_product_cnt")
private String payProductCnt;
/**
* 成交金额(剔除退款)(单位:分)
*/
@JsonProperty("pure_pay_gmv")
private String purePayGmv;
/**
* 成交客单价(单位:分)
*/
@JsonProperty("pay_gmv_per_uv")
private String payGmvPerUv;
/**
* 实际结算金额(单位:分)
*/
@JsonProperty("actual_commission")
private String actualCommission;
/**
* 预估佣金金额(单位:分)
*/
@JsonProperty("predict_commission")
private String predictCommission;
/**
* 商品点击人数
*/
@JsonProperty("product_click_uv")
private String productClickUv;
/**
* 商品点击次数
*/
@JsonProperty("product_click_cnt")
private String productClickCnt;
/**
* 成交退款金额
*/
@JsonProperty("pay_refund_gmv")
private String payRefundGmv;
/**
* 成交退款人数
*/
@JsonProperty("pay_refund_uv")
private String payRefundUv;
/**
* 成交退款率
*/
@JsonProperty("pay_refund_ratio")
private Double payRefundRatio;
/**
* 发货后成交退款率
*/
@JsonProperty("pay_refund_after_send_ratio")
private Double payRefundAfterSendRatio;
/**
* 成交退款订单数
*/
@JsonProperty("pay_refund_cnt")
private String payRefundCnt;
/**
* 成交退款件数
*/
@JsonProperty("pay_refund_product_cnt")
private String payRefundProductCnt;
/**
* 发货前成交退款率
*/
@JsonProperty("pay_refund_before_send_ratio")
private Double payRefundBeforeSendRatio;
/**
* 退款金额(单位:分)
*/
@JsonProperty("refund_gmv")
private String refundGmv;
/**
* 退款件数
*/
@JsonProperty("refund_product_cnt")
private String refundProductCnt;
/**
* 退款订单数
*/
@JsonProperty("refund_cnt")
private String refundCnt;
/**
* 退款人数
*/
@JsonProperty("refund_uv")
private String refundUv;
}
| 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/compass/finder/SaleProfileDataResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/SaleProfileDataResponse.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 SaleProfileDataResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = - 6409722880191468272L;
/**
* 带货人群数据
*/
@JsonProperty("data")
private SaleProfileData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/SaleProfileDataParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/SaleProfileDataParam.java | package me.chanjar.weixin.channel.bean.compass.finder;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.compass.CompassFinderBaseParam;
/**
* 获取带货人群数据请求参数
*
* @author <a href="https://github.com/Winnie-by996">Winnie</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SaleProfileDataParam extends CompassFinderBaseParam {
private static final long serialVersionUID = 4037843292285732855L;
/**
* 用户类型 {@link me.chanjar.weixin.channel.enums.SaleProfileUserType}
*/
@JsonProperty("type")
private Integer type;
public SaleProfileDataParam(String ds, Integer type) {
super(ds);
this.type = type;
}
}
| 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/compass/finder/ProductInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/ProductInfo.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 ProductInfo implements Serializable {
private static final long serialVersionUID = - 3347940276601700091L;
/**
* 商品id
*/
@JsonProperty("product_id")
private String productId;
/**
* 商品头图
*/
@JsonProperty("head_img_url")
private String headImgUrl;
/**
* 商品标题
*/
@JsonProperty("title")
private String title;
/**
* 商品价格
*/
@JsonProperty("price")
private String price;
/**
* 1级类目
*/
@JsonProperty("first_category_id")
private String firstCategoryId;
/**
* 2级类目
*/
@JsonProperty("second_category_id")
private String secondCategoryId;
/**
* 3级类目
*/
@JsonProperty("third_category_id")
private String thirdCategoryId;
/**
* 商品罗盘数据
*/
@JsonProperty("data")
private ProductCompassData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/FieldData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/finder/FieldData.java | package me.chanjar.weixin.channel.bean.compass.finder;
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 FieldData implements Serializable {
private static final long serialVersionUID = - 4022953139259283599L;
/**
* 维度指标名
*/
@JsonProperty("dim_key")
private String dimKey;
/**
* 维度指标值
*/
@JsonProperty("dim_value")
private String dimValue;
}
| 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/compass/shop/ShopSaleProfileDataParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopSaleProfileDataParam.java | package me.chanjar.weixin.channel.bean.compass.shop;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.compass.CompassFinderBaseParam;
/**
* 获取带货人群数据请求参数
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ShopSaleProfileDataParam extends CompassFinderBaseParam {
private static final long serialVersionUID = 240010632808576923L;
/** 用户类型 */
@JsonProperty("type")
private Integer type;
public ShopSaleProfileDataParam(String ds, Integer type) {
super(ds);
this.type = type;
}
}
| 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/compass/shop/ShopField.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopField.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopField implements Serializable {
private static final long serialVersionUID = -8669197081350262569L;
/** 维度类别名 */
@JsonProperty("field_name")
private String fieldName;
/** 维度指标数据列表 */
@JsonProperty("data_list")
private List<FieldDetail> dataList;
@Data
@NoArgsConstructor
public static class FieldDetail implements Serializable {
private static final long serialVersionUID = 2900633035074950462L;
/** 维度指标名 */
@JsonProperty("dim_key")
private String dimKey;
/** 维度指标值 */
@JsonProperty("dim_value")
private String dimValue;
}
}
| 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/compass/shop/FinderOverallData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderOverallData.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderOverallData implements Serializable {
private static final long serialVersionUID = -994852668593815907L;
/** 成交金额,单位分 */
@JsonProperty("pay_gmv")
private String payGmv;
/** 动销达人数 */
@JsonProperty("pay_sales_finder_cnt")
private String paySalesFinderCnt;
/** 动销商品数 */
@JsonProperty("pay_product_id_cnt")
private String payProductIdCnt;
/** 点击-成交转化率 */
@JsonProperty("click_to_pay_uv_ratio")
private Double clickToPayUvRatio;
}
| 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/compass/shop/FinderProductSimpleGmvData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderProductSimpleGmvData.java | package me.chanjar.weixin.channel.bean.compass.shop;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 带货达人商品GMV数据
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
public class FinderProductSimpleGmvData implements Serializable {
private static final long serialVersionUID = -3740996985044711599L;
/** 佣金率 */
@JsonProperty("commission_ratio")
private Double commissionRatio;
/** 成交金额,单位分 */
@JsonProperty("pay_gmv")
private String payGmv;
}
| 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/compass/shop/ShopProductCompassData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopProductCompassData.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopProductCompassData implements Serializable {
private static final long serialVersionUID = 5387546181020447627L;
/** 成交金额 */
@JsonProperty("pay_gmv")
private String payGmv;
/**下单金额,单位分 */
@JsonProperty("create_gmv")
private String createGmv;
/** 下单订单数 */
@JsonProperty("create_cnt")
private String createCnt;
/** 下单人数 */
@JsonProperty("create_uv")
private String createUv;
/** 下单件数 */
@JsonProperty("create_product_cnt")
private String createProductCnt;
/** 成交订单数 */
@JsonProperty("pay_cnt")
private String payCnt;
/** 成交人数 */
@JsonProperty("pay_uv")
private String payUv;
/** 成交件数 */
@JsonProperty("pay_product_cnt")
private String payProductCnt;
/** 成交金额(剔除退款) */
@JsonProperty("pure_pay_gmv")
private String purePayGmv;
/** 成交客单价(剔除退款) */
@JsonProperty("pay_gmv_per_uv")
private String payGmvPerUv;
/** 实际结算金额,单位分 */
@JsonProperty("seller_actual_settle_amount")
private String sellerActualSettleAmount;
/** 实际服务费金额,单位分 */
@JsonProperty("platform_actual_commission")
private String platformActualCommission;
/** 实际达人佣金支出,单位分 */
@JsonProperty("finderuin_actual_commission")
private String finderuinActualCommission;
/** 实际团长佣金支出,单位分 */
@JsonProperty("captain_actual_commission")
private String captainActualCommission;
/** 预估结算金额,单位分 */
@JsonProperty("seller_predict_settle_amount")
private String sellerPredictSettleAmount;
/** 预估服务费金额,单位分 */
@JsonProperty("platform_predict_commission")
private String platformPredictCommission;
/** 预估达人佣金支出,单位分 */
@JsonProperty("finderuin_predict_commission")
private String finderuinPredictCommission;
/** 预估团长佣金支出,单位分 */
@JsonProperty("captain_predict_commission")
private String captainPredictCommission;
/** 商品点击人数 */
@JsonProperty("product_click_uv")
private String productClickUv;
/** 商品点击次数 */
@JsonProperty("product_click_cnt")
private String productClickCnt;
/** 成交退款金额,单位分 */
@JsonProperty("pay_refund_gmv")
private String payRefundGmv;
/** 成交退款人数,单位分 */
@JsonProperty("pay_refund_uv")
private String payRefundUv;
/** 成交退款率 */
@JsonProperty("pay_refund_ratio")
private Double payRefundRatio;
/** 发货后成交退款率 */
@JsonProperty("pay_refund_after_send_ratio")
private Double payRefundAfterSendRatio;
/** 成交退款订单数 */
@JsonProperty("pay_refund_cnt")
private String payRefundCnt;
/** 成交退款件数 */
@JsonProperty("pay_refund_product_cnt")
private String payRefundProductCnt;
/** 发货前成交退款率 */
@JsonProperty("pay_refund_before_send_ratio")
private Double payRefundBeforeSendRatio;
/** 退款金额,单位分 */
@JsonProperty("refund_gmv")
private String refundGmv;
/** 退款件数 */
@JsonProperty("refund_product_cnt")
private String refundProductCnt;
/** 退款订单数 */
@JsonProperty("refund_cnt")
private String refundCnt;
/** 退款人数 */
@JsonProperty("refund_uv")
private String refundUv;
}
| 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/compass/shop/FinderProductOverallResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderProductOverallResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderProductOverallResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 6358992001065379269L;
/** 带货达人详情 */
@JsonProperty("data")
private FinderGmvData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/CompassFinderIdParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/CompassFinderIdParam.java | package me.chanjar.weixin.channel.bean.compass.shop;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.compass.CompassFinderBaseParam;
/**
* 带货达人 请求参数
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class CompassFinderIdParam extends CompassFinderBaseParam {
private static final long serialVersionUID = 9214560943091074780L;
/** 视频号ID */
@JsonProperty("finder_id")
private String finderId;
public CompassFinderIdParam(String ds, String finderId) {
super(ds);
this.finderId = finderId;
}
}
| 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/compass/shop/ShopProductDataParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopProductDataParam.java | package me.chanjar.weixin.channel.bean.compass.shop;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.compass.CompassFinderBaseParam;
/**
* 商品数据 请求参数
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ShopProductDataParam extends CompassFinderBaseParam {
private static final long serialVersionUID = - 5016298274452168329L;
/** 商品id */
@JsonProperty("product_id")
private String productId;
public ShopProductDataParam(String ds, String productId) {
super(ds);
this.productId = 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/compass/shop/ShopProductListResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopProductListResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopProductListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = -6328224902770141045L;
/** 商品列表 */
@JsonProperty("product_list")
private List<ShopProductInfo> productList;
}
| 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/compass/shop/FinderListResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderListResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 6358992001065379269L;
/** 授权视频号id列表 */
@JsonProperty("finder_list")
private List<FinderGmvItem> finderList;
}
| 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/compass/shop/ShopSaleProfileData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopSaleProfileData.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopSaleProfileData implements Serializable {
private static final long serialVersionUID = -6825849811081728787L;
/** 维度数据列表 */
@JsonProperty("field_list")
private List<ShopField> fieldList;
}
| 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/compass/shop/ShopOverall.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopOverall.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopOverall implements Serializable {
private static final long serialVersionUID = 3304918097895132226L;
/** 成交金额,单位分 */
@JsonProperty("pay_gmv")
private String payGmv;
/** 成交人数 */
@JsonProperty("pay_uv")
private String payUv;
/** 成交退款金额,单位分 */
@JsonProperty("pay_refund_gmv")
private String payRefundGmv;
/** 成交订单数 */
@JsonProperty("pay_order_cnt")
private String payOrderCnt;
/** 直播成交金额,单位分 */
@JsonProperty("live_pay_gmv")
private String livePayGmv;
/** 短视频成交金额,单位分 */
@JsonProperty("feed_pay_gmv")
private String feedPayGmv;
}
| 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/compass/shop/FinderGmvItem.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderGmvItem.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderGmvItem implements Serializable {
private static final long serialVersionUID = -3740996985044711599L;
/** 视频号id */
@JsonProperty("finder_id")
private String finderId;
/** 视频号昵称 */
@JsonProperty("finder_nickname")
private String finderNickname;
/** 带货达人数据 */
@JsonProperty("data")
private FinderGmvData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderAuthListResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderAuthListResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderAuthListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = -3215073536002857589L;
/** 主营视频号id */
@JsonProperty("main_finder_id")
private String mainFinderId;
/** 授权视频号id列表 */
@JsonProperty("authorized_finder_id_list")
private List<String> authorizedFinderIdList;
}
| 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/compass/shop/ShopLiveListResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopLiveListResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopLiveListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = -7110751559923117330L;
/** 店铺开播列表 */
@JsonProperty("live_list")
private List<ShopLiveData> liveList;
}
| 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/compass/shop/FinderOverallResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderOverallResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderOverallResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = -4935555091396799318L;
/**
* 电商概览数据
*/
@JsonProperty("data")
private FinderOverallData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderProductListItem.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderProductListItem.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderProductListItem implements Serializable {
private static final long serialVersionUID = 1646092488200992026L;
/** 商品id */
@JsonProperty("product_id")
private String productId;
/** 商品头图 */
@JsonProperty("head_img_url")
private String headImgUrl;
/** 商品标题 */
@JsonProperty("title")
private String title;
/** 商品价格 */
@JsonProperty("price")
private String price;
/** 商品1级类目 */
@JsonProperty("first_category_id")
private String firstCategoryId;
/** 商品2级类目 */
@JsonProperty("second_category_id")
private String secondCategoryId;
/** 商品3级类目 */
@JsonProperty("third_category_id")
private String thirdCategoryId;
/** gmv */
@JsonProperty("data")
private GmvData data;
@Data
@NoArgsConstructor
public static class GmvData implements Serializable {
private static final long serialVersionUID = 1840494188469233735L;
/** 佣金率 */
@JsonProperty("commission_ratio")
private Double commissionRatio;
/** 成交金额,单位分 */
@JsonProperty("pay_gmv")
private String payGmv;
}
}
| 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/compass/shop/ShopOverallResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopOverallResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopOverallResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 1632800741359642057L;
/**
* 电商概览数据
*/
@JsonProperty("data")
private ShopOverall data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopLiveData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopLiveData.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopLiveData implements Serializable {
/** 直播id */
@JsonProperty("live_id")
private String liveId;
/** 直播标题 */
@JsonProperty("live_title")
private String liveTitle;
/** 开播时间,unix时间戳 */
@JsonProperty("live_time")
private String liveTime;
/** 直播时长,单位秒 */
@JsonProperty("live_duration")
private String liveDuration;
/** 直播封面 */
@JsonProperty("live_cover_img_url")
private String liveCoverImgUrl;
}
| 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/compass/shop/FinderGmvData.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderGmvData.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderGmvData implements Serializable {
private static final long serialVersionUID = -7463331971169286175L;
/** 成交金额,单位分 */
@JsonProperty("pay_gmv")
private String payGmv;
/** 动销商品数 */
@JsonProperty("pay_product_id_cnt")
private String payProductIdCnt;
/** 成交人数 */
@JsonProperty("pay_uv")
private String payUv;
/** 退款金额,单位分 */
@JsonProperty("refund_gmv")
private String refundGmv;
/** 成交退款金额,单位分 */
@JsonProperty("pay_refund_gmv")
private String payRefundGmv;
}
| 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/compass/shop/ShopProductInfo.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopProductInfo.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopProductInfo implements Serializable {
private static final long serialVersionUID = 3376047696301017643L;
/** 商品id */
@JsonProperty("product_id")
private String productId;
/** 商品图 */
@JsonProperty("head_img_url")
private String headImgUrl;
/** 商品标题 */
@JsonProperty("title")
private String title;
/** 商品价格,单位分 */
@JsonProperty("price")
private String price;
/** 商品一级类目 */
@JsonProperty("first_category_id")
private String firstCategoryId;
/** 商品二级类目 */
@JsonProperty("second_category_id")
private String secondCategoryId;
/** 商品三级类目 */
@JsonProperty("third_category_id")
private String thirdCategoryId;
/** 商品罗盘数据 */
@JsonProperty("data")
private ShopProductCompassData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopProductDataResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopProductDataResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopProductDataResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 6903392663954301579L;
/** 商品详细信息 */
@JsonProperty("product_info")
private ShopProductInfo 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/compass/shop/FinderProductListResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/FinderProductListResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 FinderProductListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 5883861777181983173L;
/**
* 带货达人商品列表
*/
@JsonProperty("product_list")
private List<FinderProductListItem> productList;
}
| 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/compass/shop/ShopSaleProfileDataResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/compass/shop/ShopSaleProfileDataResponse.java | package me.chanjar.weixin.channel.bean.compass.shop;
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 ShopSaleProfileDataResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 8520148855114842741L;
/** 店铺人群数据 */
@JsonProperty("data")
private ShopSaleProfileData data;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/complaint/ComplaintParam.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/complaint/ComplaintParam.java | package me.chanjar.weixin.channel.bean.complaint;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 纠纷单留言
*
* @author <a href="https://github.com/lixize">Zeyes</a>
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ComplaintParam implements Serializable {
private static final long serialVersionUID = 6146118590005718327L;
/** 纠纷单号 */
@JsonProperty("complaint_id")
private String complaintId;
/** 留言内容,最多500字 */
@JsonProperty("content")
private String content;
/** 图片media_id列表,所有留言总图片数量最多20张 */
@JsonProperty("media_id_list")
private List<String> mediaIds;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
binarywang/WxJava | https://github.com/binarywang/WxJava/blob/84b5c4d2d0774f800237634e5d0336f53c004fe3/weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/complaint/ComplaintHistory.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/complaint/ComplaintHistory.java | package me.chanjar.weixin.channel.bean.complaint;
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 ComplaintHistory implements Serializable {
private static final long serialVersionUID = -4706637116597650133L;
/** 历史操作类型,见 {@link me.chanjar.weixin.channel.enums.ComplaintItemType } */
@JsonProperty("item_type")
private Integer itemType;
/** 操作时间,Unix时间戳 */
@JsonProperty("time")
private Long time;
/** 用户联系电话 */
@JsonProperty("phone_number")
private String phoneNumber;
/** 相关文本内容 */
@JsonProperty("content")
private String content;
/** 相关图片media_id列表 */
@JsonProperty("media_id_list")
private List<String> mediaIds;
/** 售后类型, 1-仅退款 2-退货退款 */
@JsonProperty("after_sale_type")
private Integer afterSaleType;
/** 售后原因,见 {@link me.chanjar.weixin.channel.enums.AfterSalesReason} */
@JsonProperty("after_sale_reason")
private Integer afterSaleReason;
}
| 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/complaint/ComplaintOrderResponse.java | weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/complaint/ComplaintOrderResponse.java | package me.chanjar.weixin.channel.bean.complaint;
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 ComplaintOrderResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = 1968530826349555367L;
/** 售后单号 */
@JsonProperty("after_sale_order_id")
private String afterSaleOrderId;
/** 订单号 */
@JsonProperty("order_id")
private String orderId;
/** 纠纷历史 */
@JsonProperty("history")
private List<ComplaintHistory> history;
/** 纠纷单状态, 见 {@link me.chanjar.weixin.channel.enums.ComplaintStatus} */
@JsonProperty("status")
private Integer status;
}
| java | Apache-2.0 | 84b5c4d2d0774f800237634e5d0336f53c004fe3 | 2026-01-04T14:46:39.499027Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.