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

cn.binarywang.wx.miniapp.bean.product.WxMiniAfterSaleDetail Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.bean.product;

import com.google.gson.annotations.SerializedName;
import java.util.List;
import lombok.Data;

/**
 * @author leiin
 * created on  2022/6/20 7:16 下午
 */
@Data
public class WxMiniAfterSaleDetail {
  @SerializedName("aftersale_order_list")
  private List aftersaleOrderList;
  @SerializedName("on_aftersale_order_cnt")
  private Integer onAftersaleOrderCnt;

  @Data
  public static class AfterSaleOrder {
    @SerializedName("aftersale_order_id")
    private Long aftersaleOrderId;
    private Integer status;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy