Commit 5765e62e by unknown

Merge branch 'f-6.6.4' of 192.168.10.6:caosy/fun-common into f-6.6.4

parents 5bc9e4fe fa20df5e
......@@ -82,6 +82,10 @@ public class CommuneResourceBean implements java.io.Serializable {
private Integer size;
private Integer totalSize;
private Integer totalUsed;
private Integer inventoryType;
private Integer totalInventory;
......@@ -364,6 +368,22 @@ public class CommuneResourceBean implements java.io.Serializable {
this.size = size;
}
public Integer getTotalSize() {
return totalSize;
}
public void setTotalSize(Integer totalSize) {
this.totalSize = totalSize;
}
public Integer getTotalUsed() {
return totalUsed;
}
public void setTotalUsed(Integer totalUsed) {
this.totalUsed = totalUsed;
}
public Integer getInventoryType() {
return inventoryType;
}
......
......@@ -3,7 +3,10 @@ package com.ctrip.fun.common.vo.product;
import java.util.Date;
import java.util.List;
import org.springframework.format.annotation.DateTimeFormat;
import com.ctrip.fun.common.vo.AbstractPagedQuery;
import com.fasterxml.jackson.annotation.JsonFormat;
public class CommuneResourceQuery extends AbstractPagedQuery<CommuneResourceQuery> {
private static final long serialVersionUID = 2376696742841286523L;
......@@ -32,6 +35,8 @@ public class CommuneResourceQuery extends AbstractPagedQuery<CommuneResourceQuer
this.lng = lng;
}
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
public Date getPriceDate() {
return priceDate;
}
......
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 sign in to comment