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

me.chanjar.weixin.channel.bean.order.AfterSaleOrderInfo Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.order;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 售后信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class AfterSaleOrderInfo implements Serializable {

  private static final long serialVersionUID = 3938545222231426455L;

  /** 售后单ID */
  @JsonProperty("aftersale_order_id")
  private String afterSaleOrderId;

  public String getAfterSaleOrderId() {
    return afterSaleOrderId;
  }

  public void setAfterSaleOrderId(String afterSaleOrderId) {
    this.afterSaleOrderId = afterSaleOrderId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy