Commit 4feef80a by 王祖波

Merge branch 'bugfix-20240417' into 'developer'

新增goodsId参数

See merge request !1699
parents e4865d31 90b7b1b0
......@@ -132,6 +132,7 @@ public class ContentMaterialController {
pageQDTO.setContentColumnId(contentMaterialQO.getContentColumnId());
pageQDTO.setMaterialType(contentMaterialQO.getMaterialType());
pageQDTO.setClerkId(contentMaterialQO.getClerkId());
pageQDTO.setGoodsId(contentMaterialQO.getGoodsId());
if (contentMaterialQO.getSortType() != null) {
if (contentMaterialQO.getSortType() == 2) {
......
......@@ -63,6 +63,11 @@ public class ContentMaterialQO extends PageQo {
*/
private Integer searchType;
/**
* 商品id
*/
private String goodsId;
public Integer getQueryScene() {
return queryScene;
}
......@@ -142,4 +147,12 @@ public class ContentMaterialQO extends PageQo {
public void setSearchType(Integer searchType) {
this.searchType = searchType;
}
public String getGoodsId() {
return goodsId;
}
public void setGoodsId(String goodsId) {
this.goodsId = goodsId;
}
}
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