|
@@ -35,6 +35,7 @@ import org.jeecg.modules.ctop.service.IProjectMemberService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Arrays;
|
|
@@ -55,13 +56,13 @@ import java.util.Map;
|
|
|
public class UserAllocationController {
|
|
|
@Autowired
|
|
|
private IUserAllocationService userAllocationService;
|
|
|
- @Autowired
|
|
|
+ @Resource
|
|
|
private UserAllocationMapper userAllocationMapper;
|
|
|
@Autowired
|
|
|
private IProjectService projectService;
|
|
|
@Autowired
|
|
|
private ISysRoleExtService sysRoleService;
|
|
|
- @Autowired
|
|
|
+ @Resource
|
|
|
private ProjectMemberMapper memberMapper;
|
|
|
@Autowired
|
|
|
private IProjectMemberService projectMemberService;
|
|
@@ -71,8 +72,6 @@ public class UserAllocationController {
|
|
|
@Autowired
|
|
|
private IKuaishouInterfaceService kuaishouInterfaceService;
|
|
|
@Autowired
|
|
|
- private IKuaiShouAdvertiserBaseInfoService kuaiShouAdvertiserBaseInfoService;
|
|
|
- @Autowired
|
|
|
private IByteDanceAdvertiserDataService advertiserDataService;
|
|
|
|
|
|
|
|
@@ -309,9 +308,7 @@ public class UserAllocationController {
|
|
|
result.setSuccess(false);
|
|
|
result.success("查询失败");
|
|
|
}
|
|
|
-
|
|
|
return result;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|
|
@@ -529,9 +526,6 @@ public class UserAllocationController {
|
|
|
* @param userAllocation
|
|
|
* @return
|
|
|
*/
|
|
|
- @Autowired
|
|
|
- private IRuleAccountTemplateService ruleAccountTemplateService;
|
|
|
-
|
|
|
@ApiOperation(value = "用户分配-编辑", notes = "用户分配-编辑")
|
|
|
@PutMapping(value = "/edit")
|
|
|
public Result<UserAllocation> edit(@RequestBody UserAllocation userAllocation) {
|