WxLogisticsPreviewTemplateDataRes.java 932 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
package com.yanzuoguang.wxxcx.logistics.delivery;

import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;

/***
 * 返回结果
 *
 * @author:heyanou
 */
public class WxLogisticsPreviewTemplateDataRes extends WxXcxResponseBaseError {
    /***
     * <p>
     *     描述:运单 ID
     * </p>
     */
    private String  waybill_id;
    /***
     * <p>
     *     描述:渲染后的面单 HTML 文件(已经过 Base64 编码)
     * </p>
     */
    private String  rendered_waybill_template;

    public String getWaybill_id() {
        return waybill_id;
    }

    public void setWaybill_id(String waybill_id) {
        this.waybill_id = waybill_id;
    }

    public String getRendered_waybill_template() {
        return rendered_waybill_template;
    }

    public void setRendered_waybill_template(String rendered_waybill_template) {
        this.rendered_waybill_template = rendered_waybill_template;
    }
}