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; /** *
* crm修改积分记录 前端控制器 *
* * @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