package com.yanzuoguang.wxxcx.immediateDelivery.account; import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError; import com.yanzuoguang.wxxcx.immediateDelivery.vo.ShopList; import java.util.List; /*** * 返回结果 * * @author:heyanou */ public class WxGetBindAccountDataRes extends WxXcxResponseBaseError { /** * 运力返回的错误码 */ private Long resultcode; /** * <b>运力返回的错误描述</b> */ private String resultmsg; /** * <b>绑定的商家签约账号列表</b> */ private List<ShopList> shop_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<ShopList> getShop_list() { return shop_list; } public void setShop_list(List<ShopList> shop_list) { this.shop_list = shop_list; } }