All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.channel.bean.message.after.ComplaintInfo Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
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 Zeyes
 */
@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;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy