Commit 0540420d authored by dmy's avatar dmy

中医药小程序代码提交

parent 4725ed0c
...@@ -32,7 +32,10 @@ public class ProductDaoImpl extends BaseDaoImpl implements ProductDao { ...@@ -32,7 +32,10 @@ public class ProductDaoImpl extends BaseDaoImpl implements ProductDao {
.add("productType", " AND p.product_type =?") .add("productType", " AND p.product_type =?")
.add("status", " AND p.status =?") .add("status", " AND p.status =?")
.add("position", " AND pe.position =?") .add("position", " AND pe.position =?")
.add("categoryType", " AND p.category_type =?"); .add("categoryType", " AND p.category_type =?")
.add("languageType", "and pe.language_type =?")
;
} }
@Override @Override
......
...@@ -9,6 +9,7 @@ public class ProductLoadPageReqVo extends PageSizeReqVo { ...@@ -9,6 +9,7 @@ public class ProductLoadPageReqVo extends PageSizeReqVo {
private String productStatus; private String productStatus;
private Integer productType; private Integer productType;
private Integer languageType; private Integer languageType;
private Integer categoryType;
public String getProductId() { public String getProductId() {
return productId; return productId;
...@@ -57,4 +58,12 @@ public class ProductLoadPageReqVo extends PageSizeReqVo { ...@@ -57,4 +58,12 @@ public class ProductLoadPageReqVo extends PageSizeReqVo {
public void setProductType(Integer productType) { public void setProductType(Integer productType) {
this.productType = productType; this.productType = productType;
} }
public Integer getCategoryType() {
return categoryType;
}
public void setCategoryType(Integer categoryType) {
this.categoryType = categoryType;
}
} }
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