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; } }