POST api/SaveApprovalProcessNode
保存审批节点
Request Information
URI Parameters
None.
Body Parameters
ApprovalProcessNodeParams| Name | Description | Type | Additional information |
|---|---|---|---|
| IDX |
IDX |
integer |
None. |
| ApprovalProcessID |
审批流程ID |
integer |
None. |
| ProcessType |
1:企业首营审批 2:产品首营审批 3:企业资料修改审批 |
integer |
None. |
| NodeName |
节点名称 |
string |
None. |
| NodeType |
节点类型 1:审批节点 2:抄送节点 |
integer |
None. |
| ApprovalType |
1:或签 2:会签 |
integer |
None. |
| AllowJournalView |
是否允许查看日志 1:允许 0:不允许 |
integer |
None. |
| AllowLeaveMessage |
是否允许留言 1:允许 0:不允许 |
integer |
None. |
| AllowEdit |
是否允许修改审核内容 1:允许 0:不允许 |
integer |
None. |
| FormJson |
表单展示json |
string |
None. |
| Sort |
排序 |
integer |
None. |
| UserJson |
人员[{"id":1,"type":1},{},{}] |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IDX": 1,
"ApprovalProcessID": 2,
"ProcessType": 3,
"NodeName": "sample string 4",
"NodeType": 5,
"ApprovalType": 6,
"AllowJournalView": 7,
"AllowLeaveMessage": 8,
"AllowEdit": 9,
"FormJson": "sample string 10",
"Sort": 11,
"UserJson": "sample string 12"
}
application/xml, text/xml
Sample:
<ApprovalProcessNodeParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JR.SAAS.Web.API.Models"> <AllowEdit>9</AllowEdit> <AllowJournalView>7</AllowJournalView> <AllowLeaveMessage>8</AllowLeaveMessage> <ApprovalProcessID>2</ApprovalProcessID> <ApprovalType>6</ApprovalType> <FormJson>sample string 10</FormJson> <IDX>1</IDX> <NodeName>sample string 4</NodeName> <NodeType>5</NodeType> <ProcessType>3</ProcessType> <Sort>11</Sort> <UserJson>sample string 12</UserJson> </ApprovalProcessNodeParams>
Response Information
Resource Description
保存审批节点
ApiRet| Name | Description | Type | Additional information |
|---|---|---|---|
| RetCode |
状态码 |
string |
None. |
| RetMsg |
状态描述 |
string |
None. |
| Message |
数据实体 |
Object |
None. |
| Total |
查询结果所有页的总条数 |
integer |
None. |
| TotalPage |
总页数 |
integer |
None. |
| Redirect |
需重定向的地址 |
string |
None. |
| FieldStr |
列表字段管理 |
Object |
None. |
| CurrentTime |
当前时间 |
date |
None. |
| IDX |
主键 |
integer |
None. |
| DelFlag |
删除标识 0未删除 1:已删除 |
integer |
None. |
| PageIndex |
列表请求参数 |
integer |
None. |
| PageSize |
列表请求参数 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"RetCode": "sample string 1",
"RetMsg": "sample string 2",
"Message": {},
"Total": 4,
"TotalPage": 5,
"Redirect": "sample string 6",
"FieldStr": {},
"CurrentTime": "2026-04-05 22:30:44",
"IDX": 9,
"DelFlag": 10,
"PageIndex": 11,
"PageSize": 12
}
application/xml, text/xml
Sample:
<ApiRet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JR.SAAS.Models.Common"> <_x003C_DelFlag_x003E_k__BackingField>10</_x003C_DelFlag_x003E_k__BackingField> <_x003C_IDX_x003E_k__BackingField>9</_x003C_IDX_x003E_k__BackingField> <_x003C_PageIndex_x003E_k__BackingField>11</_x003C_PageIndex_x003E_k__BackingField> <_x003C_PageSize_x003E_k__BackingField>12</_x003C_PageSize_x003E_k__BackingField> <CurrentTime>2026-04-05T22:30:44.7250601+08:00</CurrentTime> <FieldStr /> <Message /> <Redirect>sample string 6</Redirect> <RetCode>sample string 1</RetCode> <RetMsg>sample string 2</RetMsg> <Total>4</Total> <TotalPage>5</TotalPage> </ApiRet>