[区域]可以设置区域-价格项目之间的价格

This commit is contained in:
刘祥超
2020-12-10 22:07:21 +08:00
parent 6614c9f731
commit aa785ae5d3
14 changed files with 407 additions and 10 deletions

View File

@@ -8,6 +8,7 @@ type NodeRegion struct {
Name string `field:"name"` // 名称
Order uint32 `field:"order"` // 排序
CreatedAt uint64 `field:"createdAt"` // 创建时间
Prices string `field:"prices"` // 价格
State uint8 `field:"state"` // 状态
}
@@ -18,6 +19,7 @@ type NodeRegionOperator struct {
Name interface{} // 名称
Order interface{} // 排序
CreatedAt interface{} // 创建时间
Prices interface{} // 价格
State interface{} // 状态
}