增加套餐相关代码

This commit is contained in:
刘祥超
2021-10-29 14:02:40 +08:00
parent a0ff24adb6
commit d36f7d01df
14 changed files with 504 additions and 2 deletions

View File

@@ -37,6 +37,7 @@ type Server struct {
BandwidthLimit string `field:"bandwidthLimit"` // 带宽限制
TotalBandwidth float64 `field:"totalBandwidth"` // 总带宽用量单位GB
BandwidthLimitStatus string `field:"bandwidthLimitStatus"` // 带宽限制状态
UserPlanId uint32 `field:"userPlanId"` // 所属套餐ID
}
type ServerOperator struct {
@@ -75,6 +76,7 @@ type ServerOperator struct {
BandwidthLimit interface{} // 带宽限制
TotalBandwidth interface{} // 总带宽用量单位GB
BandwidthLimitStatus interface{} // 带宽限制状态
UserPlanId interface{} // 所属套餐ID
}
func NewServerOperator() *ServerOperator {