|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.ms.api.spi.move;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
import com.jinritemai.cloud.base.api.BaseRequest;
|
|
|
|
|
import com.jinritemai.cloud.base.api.BaseResponse;
|
|
|
|
@ -39,11 +40,12 @@ public class SearchChoicenessSourceItemService extends SPIBaseService implements
|
|
|
|
|
params.put("keyword",fields.getKeyword());
|
|
|
|
|
params.put("topCid",fields.getTopCid());
|
|
|
|
|
params.put("sort",fields.getSort());
|
|
|
|
|
params.put("ruleIds", JSON.toJSONString(fields.getRuleIds()));
|
|
|
|
|
params.put("isHideMoved",String.valueOf(fields.getIsHideMoved()));
|
|
|
|
|
params.put("pageNo",String.valueOf(fields.getPageNo()));
|
|
|
|
|
params.put("pageSize",String.valueOf(fields.getPageSize()));
|
|
|
|
|
params.put("authCode",""); // TODO 从数据库获取
|
|
|
|
|
params.put("ruleIds", fields.getRuleIds());
|
|
|
|
|
params.put("isHideMoved",fields.getIsHideMoved());
|
|
|
|
|
params.put("pageNo",fields.getPageNo());
|
|
|
|
|
params.put("pageSize",fields.getPageSize());
|
|
|
|
|
params.put("authCode",authCode); // TODO 从数据库获取
|
|
|
|
|
log.info(params.toString());
|
|
|
|
|
|
|
|
|
|
String res = null;
|
|
|
|
|
try {
|
|
|
|
|