LogisticsAccount.java 3.18 KB
package com.yanzuoguang.wxxcx.logistics.vo;


import java.util.List;

/***
 * 账号列表
 *
 * @author:heyanou
 */
public class LogisticsAccount {

    /**
     * <p>快递公司客户编码</p>
     */
   private String  biz_id;

    /**
     * <p>快递公司ID</p>
     */
   private String  delivery_id;

    /**
     * <p>账号绑定时间</p>
     */
   private Long    create_time;

    /**
     * <p>描述:账号更新时间</p>
     */
   private Long    update_time;
    /***
     * <p>
     * 描述:绑定状态
     * 0	绑定成功
     * 1	审核中
     * 2	绑定失败
     * 3	已解绑
     * </p>
     */
   private int     status_code;


    /**
     * <p>描述:账号别名</p>
     */
   private String  alias;

    /**
     * <p>描述:账号绑定失败的错误信息(EMS审核结果)</p>
     */
   private String  remark_wrong_msg;

    /**
     * <p>描述:账号绑定时的备注内容(提交 EMS 审核需要)</p>
     */
   private String  remark_content;

    /**
     * <p>描述:电子面单余额</p>
     */
   private double  quota_num;

    /**
     * <p>描述:电子面单余额更新时间</p>
     */
   private Long    quota_update_time;

    /**
     * <p>描述:该绑定帐号支持的服务类型</p>
     */
   private List<LogisticsService> service_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 Long getCreate_time() {
        return create_time;
    }

    public void setCreate_time(Long create_time) {
        this.create_time = create_time;
    }

    public Long getUpdate_time() {
        return update_time;
    }

    public void setUpdate_time(Long update_time) {
        this.update_time = update_time;
    }

    public int getStatus_code() {
        return status_code;
    }

    public void setStatus_code(int status_code) {
        this.status_code = status_code;
    }

    public String getAlias() {
        return alias;
    }

    public void setAlias(String alias) {
        this.alias = alias;
    }

    public String getRemark_wrong_msg() {
        return remark_wrong_msg;
    }

    public void setRemark_wrong_msg(String remark_wrong_msg) {
        this.remark_wrong_msg = remark_wrong_msg;
    }

    public String getRemark_content() {
        return remark_content;
    }

    public void setRemark_content(String remark_content) {
        this.remark_content = remark_content;
    }

    public double getQuota_num() {
        return quota_num;
    }

    public void setQuota_num(double quota_num) {
        this.quota_num = quota_num;
    }

    public Long getQuota_update_time() {
        return quota_update_time;
    }

    public void setQuota_update_time(Long quota_update_time) {
        this.quota_update_time = quota_update_time;
    }

    public List<LogisticsService> getService_type() {
        return service_type;
    }

    public void setService_type(List<LogisticsService> service_type) {
        this.service_type = service_type;
    }
}