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

me.chanjar.weixin.channel.bean.delivery.DeliveryCompanyResponse Maven / Gradle / Ivy

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

  private static final long serialVersionUID = -7695903997951385166L;
  /** 快递公司 */
  @JsonProperty("company_list")
  private List companyList;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy