1
This commit is contained in:
180
app/src/main/java/entity/OrderListBean.java
Normal file
180
app/src/main/java/entity/OrderListBean.java
Normal file
@@ -0,0 +1,180 @@
|
||||
package entity;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class OrderListBean {
|
||||
private String order_id;
|
||||
private String pay_way;
|
||||
private String order_number;
|
||||
private String order_money;
|
||||
private String order_status;
|
||||
private String pay_status;
|
||||
private String ctime;
|
||||
private String goods_user_id;
|
||||
private String nickname;
|
||||
private String avatar;
|
||||
private ArrayList<Content_info> content_info;
|
||||
private String store_phone;
|
||||
|
||||
public String getStore_phone() {
|
||||
return store_phone;
|
||||
}
|
||||
|
||||
public void setStore_phone(String store_phone) {
|
||||
this.store_phone = store_phone;
|
||||
}
|
||||
|
||||
public String getOrder_id() {
|
||||
return order_id;
|
||||
}
|
||||
|
||||
public void setOrder_id(String order_id) {
|
||||
this.order_id = order_id;
|
||||
}
|
||||
|
||||
public String getPay_way() {
|
||||
return pay_way;
|
||||
}
|
||||
|
||||
public void setPay_way(String pay_way) {
|
||||
this.pay_way = pay_way;
|
||||
}
|
||||
|
||||
public String getOrder_number() {
|
||||
return order_number;
|
||||
}
|
||||
|
||||
public void setOrder_number(String order_number) {
|
||||
this.order_number = order_number;
|
||||
}
|
||||
|
||||
public String getOrder_money() {
|
||||
return order_money;
|
||||
}
|
||||
|
||||
public void setOrder_money(String order_money) {
|
||||
this.order_money = order_money;
|
||||
}
|
||||
|
||||
public String getOrder_status() {
|
||||
return order_status;
|
||||
}
|
||||
|
||||
public void setOrder_status(String order_status) {
|
||||
this.order_status = order_status;
|
||||
}
|
||||
|
||||
public String getPay_status() {
|
||||
return pay_status;
|
||||
}
|
||||
|
||||
public void setPay_status(String pay_status) {
|
||||
this.pay_status = pay_status;
|
||||
}
|
||||
|
||||
public String getCtime() {
|
||||
return ctime;
|
||||
}
|
||||
|
||||
public void setCtime(String ctime) {
|
||||
this.ctime = ctime;
|
||||
}
|
||||
|
||||
public String getGoods_user_id() {
|
||||
return goods_user_id;
|
||||
}
|
||||
|
||||
public void setGoods_user_id(String goods_user_id) {
|
||||
this.goods_user_id = goods_user_id;
|
||||
}
|
||||
|
||||
public String getNickname() {
|
||||
return nickname;
|
||||
}
|
||||
|
||||
public void setNickname(String nickname) {
|
||||
this.nickname = nickname;
|
||||
}
|
||||
|
||||
public String getAvatar() {
|
||||
return avatar;
|
||||
}
|
||||
|
||||
public void setAvatar(String avatar) {
|
||||
this.avatar = avatar;
|
||||
}
|
||||
|
||||
public ArrayList<Content_info> getContent_info() {
|
||||
return content_info;
|
||||
}
|
||||
|
||||
public void setContent_info(ArrayList<Content_info> content_info) {
|
||||
this.content_info = content_info;
|
||||
}
|
||||
|
||||
public static class Content_info {
|
||||
private String img;
|
||||
private String property;
|
||||
private String name;
|
||||
private String sale_price;
|
||||
private String goods_num;
|
||||
private String product_code;
|
||||
private String goods_id;
|
||||
|
||||
public String getImg() {
|
||||
return img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public String getProperty() {
|
||||
return property;
|
||||
}
|
||||
|
||||
public void setProperty(String property) {
|
||||
this.property = property;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getSale_price() {
|
||||
return sale_price;
|
||||
}
|
||||
|
||||
public void setSale_price(String sale_price) {
|
||||
this.sale_price = sale_price;
|
||||
}
|
||||
|
||||
public String getGoods_num() {
|
||||
return goods_num;
|
||||
}
|
||||
|
||||
public void setGoods_num(String goods_num) {
|
||||
this.goods_num = goods_num;
|
||||
}
|
||||
|
||||
public String getProduct_code() {
|
||||
return product_code;
|
||||
}
|
||||
|
||||
public void setProduct_code(String product_code) {
|
||||
this.product_code = product_code;
|
||||
}
|
||||
|
||||
public String getGoods_id() {
|
||||
return goods_id;
|
||||
}
|
||||
|
||||
public void setGoods_id(String goods_id) {
|
||||
this.goods_id = goods_id;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user