Commit 15dc9be6 by 王祖波

素材id列表查询

parent da6ab9d1
......@@ -121,6 +121,7 @@ public class ContentMaterialController {
pageQDTO.setMaterialType(contentMaterialQO.getMaterialType());
pageQDTO.setClerkId(contentMaterialQO.getClerkId());
pageQDTO.setGoodsId(contentMaterialQO.getGoodsId());
pageQDTO.setContentMaterialIdList(contentMaterialQO.getContentMaterialIdList());
if (contentMaterialQO.getSortType() != null) {
if (contentMaterialQO.getSortType() == 2) {
......
......@@ -3,6 +3,8 @@ package com.gic.haoban.manage.web.qo.content;
import com.gic.commons.web.qo.PageQo;
import com.gic.content.api.enums.MaterialSearchSceneEnum;
import java.util.List;
/**
* @Author MUSI
* @Date 2022/10/28 1:38 PM
......@@ -27,6 +29,11 @@ public class ContentMaterialQO extends PageQo {
private String wxEnterpriseId;
/**
* 素材id列表
*/
private List<Long> contentMaterialIdList;
/**
* 门店id
*/
private String storeId;
......@@ -118,6 +125,14 @@ public class ContentMaterialQO extends PageQo {
this.wxEnterpriseId = wxEnterpriseId;
}
public List<Long> getContentMaterialIdList() {
return contentMaterialIdList;
}
public void setContentMaterialIdList(List<Long> contentMaterialIdList) {
this.contentMaterialIdList = contentMaterialIdList;
}
public String getStoreId() {
return storeId;
}
......
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