POST api/PaidService/CreateOrder
物业人员下单
Request Information
URI Parameters
None.
Body Parameters
CreateOrderRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PaidServiceMainId |
有偿服务信息ID |
string |
Required String length: inclusive between 32 and 32 |
| RoomId |
房屋Id |
string |
Required String length: inclusive between 32 and 32 |
| CommunityId |
小区ID |
string |
Required String length: inclusive between 32 and 32 |
| ResidentName |
联系人 |
string |
Required Max length: 20 |
| ResidentTel |
联系电话 |
string |
Required Max length: 11 |
| MakeDate |
预约日期 |
date |
None. |
| PaidServiceMakeTimeId |
预约时间ID |
string |
Max length: 32 |
| PaidServiceContentId |
服务项目ID |
string |
String length: inclusive between 32 and 32 |
| Memo |
备注 |
string |
Max length: 400 |
| StaffId |
下单物业人员 |
string |
String length: inclusive between 32 and 32 |
| IsAutoPD |
true 给自己拍的,false 进入抢单中心 |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"PaidServiceMainId": "sample string 1",
"RoomId": "sample string 2",
"CommunityId": "sample string 3",
"ResidentName": "sample string 4",
"ResidentTel": "sample string 5",
"MakeDate": "2025-12-07 04:16:54",
"PaidServiceMakeTimeId": "sample string 7",
"PaidServiceContentId": "sample string 8",
"Memo": "sample string 9",
"StaffId": "sample string 10",
"IsAutoPD": true
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultObjOfCreateOrderResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Mesg | string |
None. |
|
| Data | CreateOrderResponseModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Mesg": "sample string 2",
"Data": {
"Id": "sample string 1",
"QrcodeUrl": "sample string 2"
}
}