6 changed files with 321 additions and 102 deletions
@ -0,0 +1,100 @@ |
|||||
|
package cn.chjyj.szwh.vo; |
||||
|
|
||||
|
/** |
||||
|
* 管理端的订单集合 |
||||
|
*/ |
||||
|
public class AdOrderVO { |
||||
|
private Integer id; |
||||
|
private String batchcode; |
||||
|
private Integer status; |
||||
|
private String total_money; |
||||
|
private String goods_name; |
||||
|
private String createtime; |
||||
|
private String entrust_islicode; |
||||
|
private Integer goods_entrust; |
||||
|
private Integer charges_type; |
||||
|
private String buy_username;//订单用户name 别名
|
||||
|
|
||||
|
public Integer getId() { |
||||
|
return id; |
||||
|
} |
||||
|
|
||||
|
public void setId(Integer id) { |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public String getBatchcode() { |
||||
|
return batchcode; |
||||
|
} |
||||
|
|
||||
|
public void setBatchcode(String batchcode) { |
||||
|
this.batchcode = batchcode; |
||||
|
} |
||||
|
|
||||
|
public Integer getStatus() { |
||||
|
return status; |
||||
|
} |
||||
|
|
||||
|
public void setStatus(Integer status) { |
||||
|
this.status = status; |
||||
|
} |
||||
|
|
||||
|
public String getTotal_money() { |
||||
|
return total_money; |
||||
|
} |
||||
|
|
||||
|
public void setTotal_money(String total_money) { |
||||
|
this.total_money = total_money; |
||||
|
} |
||||
|
|
||||
|
public String getGoods_name() { |
||||
|
return goods_name; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_name(String goods_name) { |
||||
|
this.goods_name = goods_name; |
||||
|
} |
||||
|
|
||||
|
public String getCreatetime() { |
||||
|
return createtime; |
||||
|
} |
||||
|
|
||||
|
public void setCreatetime(String createtime) { |
||||
|
this.createtime = createtime; |
||||
|
} |
||||
|
|
||||
|
public String getEntrust_islicode() { |
||||
|
return entrust_islicode; |
||||
|
} |
||||
|
|
||||
|
public void setEntrust_islicode(String entrust_islicode) { |
||||
|
this.entrust_islicode = entrust_islicode; |
||||
|
} |
||||
|
|
||||
|
public Integer getGoods_entrust() { |
||||
|
return goods_entrust; |
||||
|
} |
||||
|
|
||||
|
public void setGoods_entrust(Integer goods_entrust) { |
||||
|
this.goods_entrust = goods_entrust; |
||||
|
} |
||||
|
|
||||
|
public Integer getCharges_type() { |
||||
|
return charges_type; |
||||
|
} |
||||
|
|
||||
|
public void setCharges_type(Integer charges_type) { |
||||
|
this.charges_type = charges_type; |
||||
|
} |
||||
|
|
||||
|
public String getBuy_username() { |
||||
|
return buy_username; |
||||
|
} |
||||
|
|
||||
|
public void setBuy_username(String buy_username) { |
||||
|
this.buy_username = buy_username; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue