package com.yanzuoguang.wxxcx.logistics.account; /*** * 生成运单 * * @author:heyanou */ public class WxLogisticsBindAccountDataReq { /*** * <p> * 是否必填:是 * 描述:接口调用凭证 * </p> */ private String access_token; /*** * <p> * 是否必填:是 * 描述:bind表示绑定,unbind表示解除绑定 * </p> */ private String type; /*** * <p> * 是否必填:是 * 描述:快递公司客户编码 * </p> */ private String biz_id; /*** * <p> * 是否必填:是 * 描述:快递公司ID * </p> */ private String delivery_id; /*** * <p> * 是否必填:否 * 描述:快递公司客户密码, ems,顺丰,京东非必填 * </p> */ private String password; /*** * <p> * 是否必填:否 * 描述:备注内容(提交 EMS 审核需要) * 格式要求: * 电话:xxxxx * 联系人:xxxxx * 服务类型:xxxxx * 发货地址:xxxx * </p> */ private String remark_content; public String getAccess_token() { return access_token; } public void setAccess_token(String access_token) { this.access_token = access_token; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getBiz_id() { return biz_id; } public void setBiz_id(String biz_id) { this.biz_id = biz_id; } public String getDelivery_id() { return delivery_id; } public void setDelivery_id(String delivery_id) { this.delivery_id = delivery_id; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getRemark_content() { return remark_content; } public void setRemark_content(String remark_content) { this.remark_content = remark_content; } }