jiangqs
2023-08-05 7c9dda6138ceea88a312583a3fcc9b2bb356fbc4
ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/management/MgtTaskController.java
@@ -1,6 +1,8 @@
package com.ruoyi.shop.controller.management;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.common.log.annotation.Log;
import com.ruoyi.common.log.enums.BusinessType;
import com.ruoyi.common.security.utils.SecurityUtils;
import com.ruoyi.shop.domain.dto.MgtFollowShopTaskDto;
import com.ruoyi.shop.domain.dto.MgtMemberTaskPageDto;
@@ -47,6 +49,7 @@
    private MemberTaskRecordService memberTaskRecordService;
    @RequestMapping(value = "/followShopTask", method = RequestMethod.POST)
    @Log(title = "跟进管理", businessType = BusinessType.UPDATE,operContent = "商户跟进")
    @ApiOperation(value = "商户跟进")
    public R followShopTask(@RequestBody MgtFollowShopTaskDto mgtFollowShopTaskDto) {
        Long userId = SecurityUtils.getUserId();
@@ -81,4 +84,6 @@
        List<MgtMemberFollowPageVo> mgtMemberFollowPageVoList = memberTaskRecordService.pageMgtMemberFollow(mgtMemberTaskPageDto);
        return R.ok(mgtMemberFollowPageVoList);
    }
}