Commit df6d987d by 徐高华

导购任务

parent 80dd72df
......@@ -8,6 +8,7 @@ import com.gic.commons.util.PageHelperUtils;
import com.gic.commons.webapi.reponse.RestResponse;
import com.gic.enterprise.api.enums.PlatformChannelEnum;
import com.gic.enterprise.api.service.EnterpriseService;
import com.gic.haoban.manage.web.controller.MaterialController;
import com.gic.haoban.manage.web.qo.clerktask.*;
import com.gic.haoban.manage.web.vo.clerktask.*;
import com.gic.marketing.pro.api.dto.clerktask.*;
......@@ -18,6 +19,8 @@ import com.gic.marketing.pro.api.qdto.clerktask.ClerkTaskPageQDTO;
import com.gic.marketing.pro.api.service.clerktask.ClerkTaskApiService;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
......@@ -34,6 +37,7 @@ import java.util.stream.Collectors;
@Controller
@RequestMapping("clerk/task")
public class ClerkTaskController {
private static Logger logger = LoggerFactory.getLogger(ClerkTaskController.class);
@Autowired
private ClerkTaskApiService clerkTaskApiService ;
......@@ -129,6 +133,7 @@ public class ClerkTaskController {
map.put(o.getChannelCode(),o.getChannelNameOrder()) ;
}
}
logger.info("{},{}",channelCodes);
String[] arr = channelCodes.split(",") ;
List<String> list = new ArrayList<>() ;
for(int i=0;i<arr.length;i++) {
......
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