Commit 114f89f5 by zhiwj

bug

parent 3ba27501
......@@ -19,9 +19,9 @@ public class OrderResourceQO implements Serializable {
/**
* channel:2 或者 channel:3时 传店铺ids,
*/
private List<Integer> storeContent;
private List<Long> storeContent;
private Integer storeWidgetId;
private Long storeWidgetId;
public Integer getChannel() {
return channel;
......@@ -31,19 +31,19 @@ public class OrderResourceQO implements Serializable {
this.channel = channel;
}
public List<Integer> getStoreContent() {
public List<Long> getStoreContent() {
return storeContent;
}
public void setStoreContent(List<Integer> storeContent) {
public void setStoreContent(List<Long> storeContent) {
this.storeContent = storeContent;
}
public Integer getStoreWidgetId() {
public Long getStoreWidgetId() {
return storeWidgetId;
}
public void setStoreWidgetId(Integer storeWidgetId) {
public void setStoreWidgetId(Long storeWidgetId) {
this.storeWidgetId = storeWidgetId;
}
}
......@@ -21,9 +21,11 @@ public class OrderResourceVO implements Serializable {
/**
* channel:2 或者 channel:3时 传店铺ids,
*/
private List<Integer> storeContent;
// @JsonFormat(shape = JsonFormat.Shape.STRING)
private List<Long> storeContent;
private Integer storeWidgetId;
// @JsonFormat(shape = JsonFormat.Shape.STRING)
private Long storeWidgetId;
public Integer getChannel() {
return channel;
......@@ -33,19 +35,19 @@ public class OrderResourceVO implements Serializable {
this.channel = channel;
}
public List<Integer> getStoreContent() {
public List<Long> getStoreContent() {
return storeContent;
}
public void setStoreContent(List<Integer> storeContent) {
public void setStoreContent(List<Long> storeContent) {
this.storeContent = storeContent;
}
public Integer getStoreWidgetId() {
public Long getStoreWidgetId() {
return storeWidgetId;
}
public void setStoreWidgetId(Integer storeWidgetId) {
public void setStoreWidgetId(Long storeWidgetId) {
this.storeWidgetId = storeWidgetId;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment