POST api/MenusControl/MenuOperSave
Request Information
URI Parameters
None.
Body Parameters
EntSysOperation| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| MenuCode | string |
None. |
|
| OperId | string |
None. |
|
| OperNameCn | string |
None. |
|
| ShowSeqence | integer |
None. |
|
| Status | string |
None. |
|
| Descr | string |
None. |
|
| CreateTime | date |
None. |
|
| EditTime | date |
None. |
|
| CreateBy | string |
None. |
|
| EditBy | string |
None. |
|
| PageSize | integer |
None. |
|
| PageIndex | integer |
None. |
|
| TotalCount | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"menuCode": "sample string 2",
"operId": "sample string 3",
"operNameCn": "sample string 4",
"showSeqence": 5,
"status": "sample string 6",
"descr": "sample string 7",
"createTime": "2025-10-31 00:18:44",
"editTime": "2025-10-31 00:18:44",
"createBy": "sample string 8",
"editBy": "sample string 9",
"pageSize": 10,
"pageIndex": 11,
"totalCount": 12
}
application/xml, text/xml
Sample:
<EntSysOperation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model"> <PageIndex>11</PageIndex> <PageSize>10</PageSize> <TotalCount>12</TotalCount> <CreateBy>sample string 8</CreateBy> <CreateTime>2025-10-31T00:18:44.3765015+08:00</CreateTime> <Descr>sample string 7</Descr> <EditBy>sample string 9</EditBy> <EditTime>2025-10-31T00:18:44.3765015+08:00</EditTime> <Id>1</Id> <MenuCode>sample string 2</MenuCode> <OperId>sample string 3</OperId> <OperNameCn>sample string 4</OperNameCn> <ShowSeqence>5</ShowSeqence> <Status>sample string 6</Status> </EntSysOperation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResultOfInt32| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Success | boolean |
None. |
|
| Data | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"success": true,
"data": 3,
"message": "sample string 4"
}
application/xml, text/xml
Sample:
<ReturnResultOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model"> <Data>3</Data> <Message>sample string 4</Message> <Status>1</Status> <Success>true</Success> </ReturnResultOfint>