xuhy
2 天以前 4f3441c452e49ba339fb50fb83c05e0e0f083eb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ruoyi.web.controller.api;
 
 
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.framework.web.service.TokenService;
import com.ruoyi.system.query.TCrmBranchQuery;
import com.ruoyi.system.query.TCrmChangePointsQuery;
import com.ruoyi.system.service.*;
import com.ruoyi.system.vo.TCrmBranchVO;
import com.ruoyi.system.vo.TCrmChangePointsVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
 
import org.springframework.web.bind.annotation.RestController;
 
/**
 * <p>
 * crm修改积分记录 前端控制器
 * </p>
 *
 * @author xiaochen
 * @since 2025-09-02
 */
@Api(tags = "修改积分记录")
@RestController
@RequestMapping("/t-crm-change-points")
public class TCrmChangePointsController {
 
 
    private final TCrmChangePointsService crmChangePointsService;
    private final TokenService tokenService;
    @Autowired
    public TCrmChangePointsController(TCrmChangePointsService crmChangePointsService, TokenService tokenService) {
        this.crmChangePointsService = crmChangePointsService;
        this.tokenService = tokenService;
    }
 
    /**
     * 分公司积分变更明细分页列表
     */
//    @ApiOperation(value = "分公司积分变更明细分页列表")
//    @PostMapping(value = "/pageListBranch")
//    public R<PageInfo<TCrmChangePointsVO>> pageListBranch(@RequestBody TCrmChangePointsQuery query) {
//        return R.ok(crmChangePointsService.pageListBranch(query));
//    }
//    /**
//     * 业务员积分变更明细分页列表
//     */
//    @ApiOperation(value = "业务员积分变更明细分页列表")
//    @PostMapping(value = "/pageListBranch")
//    public R<PageInfo<TCrmChangePointsVO>> pageListSalesperson(@RequestBody TCrmChangePointsQuery query) {
//        return R.ok(crmChangePointsService.pageListSalesperson(query));
//    }
//    /**
//     * 诊所积分变更明细分页列表
//     */
//    @ApiOperation(value = "诊所积分变更明细分页列表")
//    @PostMapping(value = "/pageListClinic")
//    public R<PageInfo<TCrmChangePointsVO>> pageListClinic(@RequestBody TCrmChangePointsQuery query) {
//        return R.ok(crmChangePointsService.pageListClinic(query));
//    }
 
}