文档
测试

资料未审核列表

POST
/study/stCourseFile/getNoAuditFilesList

请求参数

参数名
类型
描述
必填
fileName
string
资料名称
必填
createBy
string
贡献者
必填
officeId
string
平台id
必填
current
int
第几页
必填
pageSize
int
页大小
必填

响应参数

参数名
类型
描述
必填
respCode
string
示例:0000
必填
respDesc
string
示例:成功
必填
result
object
数据字典
必填
total
int
示例:2 (总条数)
必填
pages
int
示例:1 (总页数)
必填
data
array
数据列表
必填
id
string
示例:1 (资料id)
必填
isNewRecord
boolean
示例:false
必填
createBy
string
示例:管理员 (贡献者/创建者)
必填
createDate
string
示例:2022-09-14 11:25 (创建时间)
必填
courseId
int
示例:2 (课程id)
必填
fileName
string
示例:微积分 (资料名称)
必填
pageNum
int
示例:1 (第几页)
必填

说明 / 示例

{ "respCode": "0000", "respDesc": "成功", "result": { "total": 2, "pages": 1, "data": [ { "id": "1", "isNewRecord": false, "createBy": "管理员", "createDate": "2022-09-14 11:25", "courseId": 2, "fileName": "微积分" }, { "id": "2", "isNewRecord": false, "createBy": "管理员", "createDate": "2022-09-14 11:25", "courseId": 2, "fileName": "高等数学" } ], "pageNum": 1 } }