|
|
@@ -25,6 +25,7 @@ import javax.servlet.http.HttpServletRequest;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
+ * server/claude code
|
|
|
* 项目名: yhlxj11111111
|
|
|
* 文件名: ClaudeCodeController
|
|
|
* 创建者: JavaZou
|
|
|
@@ -103,6 +104,9 @@ public class ClaudeCodeController {
|
|
|
|
|
|
/**
|
|
|
* 用户积分明细
|
|
|
+ * - `page` (int, optional): 页码,默认1
|
|
|
+ * - `limit` (int, optional): 每页数量,默认20,最大100
|
|
|
+ * - `type` (string, optional): 积分类型过滤
|
|
|
*/
|
|
|
@GetMapping("/get/user/points/detail")
|
|
|
public Result<ClaudeCodePointsHistoryResp> getUserPointsDetail(@RequestParam(defaultValue = "0") Integer page, @RequestParam(defaultValue = "10") Integer limit, String type) throws Exception {
|