文档
测试

3:导出座位详情

GET
api/Student/GetSeatPDF

接口描述

导出座位详情PDF

请求参数

参数名
类型
描述
必填
sTID
string
考试ID,需要用系统ID加密
必填
StuID
string
学生ID
必填

输入示例

```JSON http://localhost:9408/api/Student/GetSeatPDF?sTID=900900510100800000800510900100900410800800010800010801&StuID=Stu023 ```

响应参数

参数名
类型
描述
必填
Code
int
1为成功,0为失败
必填
Msg
string
错误信息
必填
Data
object
数据字典
必填
FileName
string
PDF文件路径,示例:/Export/StudentSeat/Stu023.pdf
必填

输出示例

```JSON { "Code": 1, "Msg": null, "Data": { "FileName": "/Export/StudentSeat/Stu023.pdf" } } ```