{}curl --location --request GET '/api/mission/v1/fund-logs?type=1&time_range=current_month&start_date=2025-11-01&end_date=2026-01-21&page=1&page_size=20' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3NzgxMjA5NTYsImlhdCI6MTc3NTUyODk1NiwianRpIjoiZjYwZWI0YWMtNDg3NS00MzM4LThkZGUtMGI2ZTFjZjFhOGZhIiwidXNlcl9pZCI6MzF9.hTIJI1W90s0ABGjpIjwLUWAQmSi9-OFh_KvgUotfSP4' \
--header 'Content-Type: application/json' \
--data-raw '{}'{
"code": 0, // 状态码:0-成功
"message": "success", // 状态信息
"data": {
"total": 6, // 当前月份的总记录数
"current_month": "202601", // 当前查询的月份
"available_months": [ // 可用月份列表(最近三个月)
{
"month": "202601", // 月份标识
"month_text": "2026年01月" // 月份显示文本
},
{
"month": "202512",
"month_text": "2025年12月"
},
{
"month": "202511",
"month_text": "2025年11月"
}
],
"list": [ // 流水记录列表
{
"id": 1, // 流水ID
"log_no": "FL20260100001", // 流水编号
"type": 1, // 类型:1-收入,2-支出
"type_text": "收入", // 类型文本
"category": 1, // 分类码
"category_text": "阶段奖励", // 分类文本
"amount": 120.00, // 金额
"balance_before": 0.00, // 变动前余额
"balance_after": 120.00, // 变动后余额
"title": "酷炫的汽车广告(首日奖励)", // 标题
"description": "任务完成首日奖励", // 描述
"status": 1, // 状态:1-成功
"status_text": "成功", // 状态文本
"created_at": "2026-01-19 12:00:00" // 创建时间
}
]
}
}