mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-25 04:10:55 +08:00
[区域]可以设置区域说明文字
This commit is contained in:
@@ -7,5 +7,6 @@ message NodeRegion {
|
||||
int64 id = 1;
|
||||
bool isOn = 2;
|
||||
string name = 3;
|
||||
bytes pricesJSON = 4;
|
||||
string description = 4;
|
||||
bytes pricesJSON = 5;
|
||||
}
|
||||
@@ -36,6 +36,7 @@ service NodeRegionService {
|
||||
// 创建区域
|
||||
message CreateNodeRegionRequest {
|
||||
string name = 1;
|
||||
string description = 2;
|
||||
}
|
||||
|
||||
message CreateNodeRegionResponse {
|
||||
@@ -46,7 +47,8 @@ message CreateNodeRegionResponse {
|
||||
message UpdateNodeRegionRequest {
|
||||
int64 nodeRegionId = 1;
|
||||
string name = 2;
|
||||
bool isOn = 3;
|
||||
string description = 3;
|
||||
bool isOn = 4;
|
||||
}
|
||||
|
||||
// 删除区域
|
||||
|
||||
Reference in New Issue
Block a user