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

me.chanjar.weixin.channel.bean.after.AfterSaleListResponse Maven / Gradle / Ivy

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

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 Zeyes
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode
public class AfterSaleListResponse extends WxChannelBaseResponse {

  private static final long serialVersionUID = 5033313416948732123L;
  /** 售后单号列表 */
  @JsonProperty("after_sale_order_id_list")
  private List ids;

  /** 翻页参数 */
  private String nextKey;

  /** 是否还有数据 */
  @JsonProperty("has_more")
  private Boolean hasMore;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy