version:1.7
fix: update:增加抢购,修复bug
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package com.uiuios.aios.bean;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class GoodsInfo implements Serializable {
|
||||
@@ -23,6 +25,13 @@ public class GoodsInfo implements Serializable {
|
||||
int stock;
|
||||
/*跳转链接*/
|
||||
String jump_url;
|
||||
String insure;
|
||||
String deliver_goods;
|
||||
String after_sales;
|
||||
String ensure;
|
||||
@SerializedName("class")
|
||||
String type;
|
||||
|
||||
|
||||
|
||||
public int getId() {
|
||||
@@ -104,4 +113,44 @@ public class GoodsInfo implements Serializable {
|
||||
public void setJump_url(String jump_url) {
|
||||
this.jump_url = jump_url;
|
||||
}
|
||||
|
||||
public String getInsure() {
|
||||
return insure;
|
||||
}
|
||||
|
||||
public void setInsure(String insure) {
|
||||
this.insure = insure;
|
||||
}
|
||||
|
||||
public String getDeliver_goods() {
|
||||
return deliver_goods;
|
||||
}
|
||||
|
||||
public void setDeliver_goods(String deliver_goods) {
|
||||
this.deliver_goods = deliver_goods;
|
||||
}
|
||||
|
||||
public String getAfter_sales() {
|
||||
return after_sales;
|
||||
}
|
||||
|
||||
public void setAfter_sales(String after_sales) {
|
||||
this.after_sales = after_sales;
|
||||
}
|
||||
|
||||
public String getEnsure() {
|
||||
return ensure;
|
||||
}
|
||||
|
||||
public void setEnsure(String ensure) {
|
||||
this.ensure = ensure;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user