|
|
@@ -60,5 +60,83 @@ public class GoodsFilter {
|
|
|
*/
|
|
|
private Boolean haveImg;
|
|
|
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBrand() {
|
|
|
+ return brand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBrand(String brand) {
|
|
|
+ this.brand = brand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStore() {
|
|
|
+ return store;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStore(String store) {
|
|
|
+ this.store = store;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getKindUuid() {
|
|
|
+ return kindUuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setKindUuid(String kindUuid) {
|
|
|
+ this.kindUuid = kindUuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCurrency() {
|
|
|
+ return currency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrency(String currency) {
|
|
|
+ this.currency = currency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getSaleSelf() {
|
|
|
+ return saleSelf;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSaleSelf(Boolean saleSelf) {
|
|
|
+ this.saleSelf = saleSelf;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getBreakUp() {
|
|
|
+ return breakUp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBreakUp(Boolean breakUp) {
|
|
|
+ this.breakUp = breakUp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getStandard() {
|
|
|
+ return standard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStandard(Boolean standard) {
|
|
|
+ this.standard = standard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getAudited() {
|
|
|
+ return audited;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAudited(Boolean audited) {
|
|
|
+ this.audited = audited;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getHaveImg() {
|
|
|
+ return haveImg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHaveImg(Boolean haveImg) {
|
|
|
+ this.haveImg = haveImg;
|
|
|
+ }
|
|
|
}
|