文档
测试

获取扣费历史

GET
http://10.2.222.222:81/index.php/zero/course_Deduction/getDeductionDetail?sid=0010922_F0RAUXTAOgPYUpyd97gdzCNLsG6uToJI

请求参数

参数名
类型
描述
必填
sid
string
登录凭证,示例:0010922_F0RAUXTAOgPYUpyd97gdzCNLsG6uToJI
必填
deductionId
int
id,示例:1,从【获取课程人员列表】接口获取,取对应id
必填

响应参数

application/json
参数名
类型
描述
必填
Success
boolean
true
必填
Msg
string
OK
必填
Data
array
数据列表
必填
id
int
81
必填
deductionId
int
1
必填
courseId
int
1
必填
deductionMonth
string
日期,示例:2025.08
必填
expectedDeduction
int
预计扣款,示例:1250
必填
actualDeduction
int
实扣金额,示例:0
必填
isEnough
int
是否够扣,示例:1,1是0否
必填
remark
string
备注
必填
Code
string
0000
必填

说明 / 示例

{ "Success": true, "Msg": "OK", "Data": [ { "id": 81, "deductionId": 1, "courseId": 1, "deductionMonth": "2025.08", "expectedDeduction": 1250, "actualDeduction": 0, "isEnough": 1, "remark": "" }, { "id": 82, "deductionId": 1, "courseId": 1, "deductionMonth": "2025.09", "expectedDeduction": 1250, "actualDeduction": 0, "isEnough": 1, "remark": "" }, { "id": 83, "deductionId": 1, "courseId": 1, "deductionMonth": "2025.10", "expectedDeduction": 1250, "actualDeduction": 0, "isEnough": 1, "remark": "" }, { "id": 84, "deductionId": 1, "courseId": 1, "deductionMonth": "2025.11", "expectedDeduction": 1250, "actualDeduction": 0, "isEnough": 1, "remark": "" } ], "Code": "0000" }