POST Api/Service/Setting/AddReduceIntervalSetting
添加降舱细化时间设置项
Request Information
URI Parameters
None.
Body Parameters
设置参数
Collection of SpeedPower.Utility.Models.Project.Orders.Service.Setting.AddReduceIntervalSettingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ReduceSettingId |
父级ID |
globally unique identifier |
None. |
| HourTag |
小时标签(1,2,3,.....24) |
string |
Required String length: inclusive between 0 and 80 |
| IntervalTime |
执行间隔时间(分钟) |
integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ReduceSettingId": "d2a2e3a8-4661-4363-aae5-a49625eeb2f6",
"HourTag": "sample string 2",
"IntervalTime": 3
},
{
"ReduceSettingId": "d2a2e3a8-4661-4363-aae5-a49625eeb2f6",
"HourTag": "sample string 2",
"IntervalTime": 3
}
]
Response Information
Resource Description
添加降舱细化时间设置项
SpeedPower.Utility.Models.Helper.ResultMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeed |
操作是否成功 |
boolean |
None. |
| Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeed": true,
"Message": "sample string 2"
}