package com.yanzuoguang.wxxcx.immediateDelivery.delivery;

import com.yanzuoguang.wxxcx.immediateDelivery.vo.Delivery;
import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;

import java.util.List;


/***
 * 返回结果
 *
 * @author:heyanou
 */
public class WxGetAllImmeDeliveryDataRes extends WxXcxResponseBaseError {

    /**
     * 运力返回的错误码
     */
    private Long    resultcode;
    /**
     * <b>运力返回的错误描述</b>
     */
    private String  resultmsg;
    /**
     * <b>配送公司列表</b>
     */
    private List<Delivery> list;



    public Long getResultcode() {
        return resultcode;
    }

    public void setResultcode(Long resultcode) {
        this.resultcode = resultcode;
    }

    public String getResultmsg() {
        return resultmsg;
    }

    public void setResultmsg(String resultmsg) {
        this.resultmsg = resultmsg;
    }

    public List<Delivery> getList() {
        return list;
    }

    public void setList(List<Delivery> list) {
        this.list = list;
    }
}