This commit is contained in:
jinyuer
2020-09-01 15:14:48 +08:00
parent 2442ab8a70
commit 9aa33d4f1c
30 changed files with 2349 additions and 145 deletions

View File

@@ -0,0 +1,49 @@
package entity;
public class GoodsDetailEntity {
private String property;
private String product_code;
private String num;
private String price;
private boolean isCheck;
public boolean isCheck() {
return isCheck;
}
public void setCheck(boolean check) {
isCheck = check;
}
public String getProperty() {
return property;
}
public void setProperty(String property) {
this.property = property;
}
public String getProduct_code() {
return product_code;
}
public void setProduct_code(String product_code) {
this.product_code = product_code;
}
public String getNum() {
return num;
}
public void setNum(String num) {
this.num = num;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
}

View File

@@ -0,0 +1,224 @@
package entity;
import java.util.ArrayList;
public class SettleEntity {
private String wallet;
private ArrayList<Goods> goods;
private Address address;
public String getWallet() {
return wallet;
}
public void setWallet(String wallet) {
this.wallet = wallet;
}
public ArrayList<Goods> getGoods() {
return goods;
}
public void setGoods(ArrayList<Goods> goods) {
this.goods = goods;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public static class Goods {
private String userid;
private String nickname;
private String avatar;
private int num;
private String amount;
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
private ArrayList<GoodsList> list;
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
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<GoodsList> getList() {
return list;
}
public void setList(ArrayList<GoodsList> list) {
this.list = list;
}
public static class GoodsList {
private String goods_detail;
private String thumb;
private String userid;
private String property;
private String sale_price;
private String goods_user_id;
private String sale_num;
private String goods_id;
private String product_code;
public String getGoods_detail() {
return goods_detail;
}
public void setGoods_detail(String goods_detail) {
this.goods_detail = goods_detail;
}
public String getThumb() {
return thumb;
}
public void setThumb(String thumb) {
this.thumb = thumb;
}
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
public String getProperty() {
return property;
}
public void setProperty(String property) {
this.property = property;
}
public String getSale_price() {
return sale_price;
}
public void setSale_price(String sale_price) {
this.sale_price = sale_price;
}
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 getSale_num() {
return sale_num;
}
public void setSale_num(String sale_num) {
this.sale_num = sale_num;
}
public String getGoods_id() {
return goods_id;
}
public void setGoods_id(String goods_id) {
this.goods_id = goods_id;
}
public String getProduct_code() {
return product_code;
}
public void setProduct_code(String product_code) {
this.product_code = product_code;
}
}
}
public static class Address {
private String consignee_id;
private String name;
private String address;
private String mobile;
private String region;
public String getConsignee_id() {
return consignee_id;
}
public void setConsignee_id(String consignee_id) {
this.consignee_id = consignee_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
}
}