fix:十二分制-积分流水

This commit is contained in:
wangff
2025-11-10 15:12:19 +08:00
parent bd64b33ebb
commit 85de65cda6
11 changed files with 344 additions and 8 deletions

View File

@@ -0,0 +1,35 @@
package com.cool.store.controller.webb;
import com.cool.store.request.tp.TpScoreJournalQueryRequest;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.tp.TpScoreJournalService;
import com.cool.store.vo.tp.TpScoreJournalVO;
import com.github.pagehelper.PageInfo;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 十二分制-积分流水 前端控制器
* </p>
*
* @author wangff
* @since 2025/11/10
*/
@Api(tags = "十二分制-积分流水")
@RestController
@RequestMapping("/pc/tp/journal")
@RequiredArgsConstructor
public class TpScoreJournalController {
private final TpScoreJournalService tpScoreJournalService;
@ApiOperation("积分流水分页查询")
@GetMapping("/page")
public ResponseResult<PageInfo<TpScoreJournalVO>> getPage(TpScoreJournalQueryRequest request) {
return ResponseResult.success(tpScoreJournalService.getPage(request));
}
}