feat(work): 新增高级功能申请审批相关接口

This commit is contained in:
Fu Diwei
2024-06-01 15:43:01 +08:00
parent 5ef5fad1a2
commit 4809c8fe31
17 changed files with 520 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<xml>
<ToUserName><![CDATA[toUser]]></ToUserName>
<FromUserName><![CDATA[sys]]></FromUserName>
<CreateTime>1715681559</CreateTime>
<MsgType><![CDATA[event]]></MsgType>
<Event><![CDATA[finish_vip_account_approval]]></Event>
<FinishType>1</FinishType>
<ApplyId><![CDATA[ApplyId]]></ApplyId>
<AgentID>1</AgentID>
</xml>

View File

@@ -0,0 +1,11 @@
<xml>
<ToUserName><![CDATA[toUser]]></ToUserName>
<FromUserName><![CDATA[fromUser]]></FromUserName>
<CreateTime>1715681559</CreateTime>
<MsgType><![CDATA[event]]></MsgType>
<Event><![CDATA[submit_vip_account_approval]]></Event>
<ApplyReason><![CDATA[我有很多客户资料,微盘空间不足]]></ApplyReason>
<BusinessType>1</BusinessType>
<ApplyId><![CDATA[ApplyId]]></ApplyId>
<AgentID>1</AgentID>
</xml>

View File

@@ -0,0 +1,6 @@
{
"business_type": 1,
"limit": 10,
"cursor": "CURSOR",
"req_type": 1
}

View File

@@ -0,0 +1,10 @@
{
"errcode": 0,
"errmsg": "ok",
"next_cursor": "CURSOR",
"apply_id_list": [
"APPLY_ID1",
"APPLY_ID2"
],
"has_more": true
}

View File

@@ -0,0 +1,15 @@
{
"errcode": 0,
"errmsg": "ok",
"approval_info": {
"applicant": "USERID",
"create_time": 1715681559,
"business_type": 1,
"approval_id": "APPROVAL_ID",
"apply_id": "ApplyId",
"approval_url": "APPROVAL_URL",
"approval_status": 0,
"approval_type": 1,
"request_reason": "我有很多客户资料要管理,需要更多微盘空间"
}
}

View File

@@ -0,0 +1,24 @@
{
"approval_id": "APPROVALID",
"approval_status": 1,
"apply_id": "ApplyId",
"approval_url": "www.qq.com",
"process_list": {
"node_list": [
{
"current_approvers": [ "LEADER1", "LEADER2" ],
"completed_approvers": [ "LEADER0" ],
"node_apv_status": 1,
"node_apv_rel": 1,
"apv_update_time": 1715741759
},
{
"current_approvers": [ "LEADER3", "LEADER4" ],
"completed_approvers": [ "LEADER5" ],
"node_apv_status": 1,
"node_apv_rel": 1,
"apv_update_time": 1715741759
}
]
}
}