| | |
| | | @FeignClient(name="dcp-rules-service",path = "/dcp-rules",contextId = "userTagInfo") |
| | | public interface SUserTagInfoService { |
| | | |
| | | /** 标签分类树型列表 */ |
| | | @PostMapping("/tag/rule/info/list/tree") |
| | | Result listTreeData(); |
| | | |
| | | /**查询用户标签列表*/ |
| | | @PostMapping("/user/tag/info/list") |
| | | Result userTagInfoListData(@RequestBody UserTagInfoDto userTagInfoDto); |
| | |
| | | /**标签分类数据列表*/ |
| | | @PostMapping("/tag/rule/info/list") |
| | | Result listData(@RequestBody TagRuleInfoDto tagRuleInfoDto); |
| | | |
| | | /**同步用户标签数据*/ |
| | | @PostMapping("/test/handlerSyncUserLabelInfo") |
| | | Result handlerSyncUserLabelInfo(@RequestParam("userId") String userId); |
| | | } |