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

cn.binarywang.wx.miniapp.bean.delivery.FollowWaybillResponse Maven / Gradle / Ivy

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

import cn.binarywang.wx.miniapp.bean.WxMaBaseResponse;
import cn.binarywang.wx.miniapp.json.WxMaGsonBuilder;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import lombok.Data;
import lombok.experimental.Accessors;

/**
 * 
 * 查运单接口 query_follow_trace 响应参数
 * 
* * @author boris * @since 2022-04-01 */ @Data @Accessors(chain = true) public class FollowWaybillResponse extends WxMaBaseResponse implements Serializable { private static final long serialVersionUID = 3773007367000633663L; /** * 查询id. */ @SerializedName("waybill_token") private String waybillToken; public static FollowWaybillResponse fromJson(String json) { return WxMaGsonBuilder.create().fromJson(json, FollowWaybillResponse.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy