parent
175fef36d5
commit
1e377bef39
@ -0,0 +1,43 @@
|
|||||||
|
package com.android.bean;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class BaseRecords<T> implements Serializable {
|
||||||
|
private List<T> records;
|
||||||
|
private Integer current;
|
||||||
|
private Integer size;
|
||||||
|
private Integer total;
|
||||||
|
|
||||||
|
public List<T> getRecords() {
|
||||||
|
return records;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecords(List<T> records) {
|
||||||
|
this.records = records;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCurrent() {
|
||||||
|
return current;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCurrent(Integer current) {
|
||||||
|
this.current = current;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getSize() {
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSize(Integer size) {
|
||||||
|
this.size = size;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getTotal() {
|
||||||
|
return total;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTotal(Integer total) {
|
||||||
|
this.total = total;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,114 @@
|
|||||||
|
package com.android.bean.queryBean;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
public class UserGoodsRecords {
|
||||||
|
private String buyerAvatar;
|
||||||
|
private Long buyerId;
|
||||||
|
private String buyerName;
|
||||||
|
private Long createTime;
|
||||||
|
private String goodsDescription;
|
||||||
|
private Long goodsId;
|
||||||
|
private Long id;
|
||||||
|
private ArrayList<String> imageUrlList;
|
||||||
|
private Integer price;
|
||||||
|
private String sellerAvatar;
|
||||||
|
private Long sellerId;
|
||||||
|
private String sellerName;
|
||||||
|
|
||||||
|
public String getBuyerAvatar() {
|
||||||
|
return buyerAvatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBuyerAvatar(String buyerAvatar) {
|
||||||
|
this.buyerAvatar = buyerAvatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getBuyerId() {
|
||||||
|
return buyerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBuyerId(Long buyerId) {
|
||||||
|
this.buyerId = buyerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBuyerName() {
|
||||||
|
return buyerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBuyerName(String buyerName) {
|
||||||
|
this.buyerName = buyerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getCreateTime() {
|
||||||
|
return createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateTime(Long createTime) {
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getGoodsDescription() {
|
||||||
|
return goodsDescription;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGoodsDescription(String goodsDescription) {
|
||||||
|
this.goodsDescription = goodsDescription;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getGoodsId() {
|
||||||
|
return goodsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGoodsId(Long goodsId) {
|
||||||
|
this.goodsId = goodsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ArrayList<String> getImageUrlList() {
|
||||||
|
return imageUrlList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImageUrlList(ArrayList<String> imageUrlList) {
|
||||||
|
this.imageUrlList = imageUrlList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getPrice() {
|
||||||
|
return price;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrice(Integer price) {
|
||||||
|
this.price = price;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSellerAvatar() {
|
||||||
|
return sellerAvatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSellerAvatar(String sellerAvatar) {
|
||||||
|
this.sellerAvatar = sellerAvatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getSellerId() {
|
||||||
|
return sellerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSellerId(Long sellerId) {
|
||||||
|
this.sellerId = sellerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSellerName() {
|
||||||
|
return sellerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSellerName(String sellerName) {
|
||||||
|
this.sellerName = sellerName;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue