Commit f665810e authored by heyanou's avatar heyanou

类放错了shoplist

parent c7c237c0
package com.yanzuoguang.wxxcx.immediateDelivery.account;
import com.yanzuoguang.wxxcx.immediateDelivery.vo.ShopList;
import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;
import com.yanzuoguang.wxxcx.immediateDelivery.vo.ShopList;
import java.util.List;
......
package com.yanzuoguang.wxxcx.immediateDelivery.vo;
/***
* 绑定的商家签约账号列表
*
* @author:heyanou
*/
public class ShopList {
/**
* <b>配送公司Id</b>
*/
private String delivery_id;
/**
* <b>商家id</b>
*/
private String shopid;
/**
* <b>审核状态</b>
* 0=审核通过
* 1=审核中
* 2=审核不通过
*/
private int audit_result;
public String getDelivery_id() {
return delivery_id;
}
public void setDelivery_id(String delivery_id) {
this.delivery_id = delivery_id;
}
public String getShopid() {
return shopid;
}
public void setShopid(String shopid) {
this.shopid = shopid;
}
public int getAudit_result() {
return audit_result;
}
public void setAudit_result(int audit_result) {
this.audit_result = audit_result;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment