查询没有审核的申请
[TOC]
简要描述
- 查询没有审核的申请接口
请求URL
http://39.108.89.221:8081/apply/{teamId}
请求方式
- GET
参数
返回示例
{
"status": 1,
"message":"查询成功",
"data": {
"applies":[
{
"applyId": 1,
"userId": 1,
"teamId": 1,
"agree": null,
"status":0,
"createTime": "2022-02-02 00:00:00",
"updateTime": "2022-02-02 00:00:00"
}
]
}
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
agree | int | 是否同意,0:不同意;1:同意 |
status | int | 状态,0:待审核;1:审核完 |