me.chanjar.weixin.channel.bean.freight.TemplateInfoResponse Maven / Gradle / Ivy
 The newest version!
        
        package me.chanjar.weixin.channel.bean.freight;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse;
/**
 * 运费模板 响应
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class TemplateInfoResponse extends WxChannelBaseResponse {
  private static final long serialVersionUID = -8381510839783330617L;
  /** 运费模板id */
  @JsonProperty("freight_template")
  private FreightTemplate template;
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy