feature:add column hubCode for centerOverview

Former-commit-id: 95fdd3e217ecc138a59767cf073e462a83b2e584
This commit is contained in:
zhouqunjie 2023-05-16 15:30:43 +08:00
parent 99b841b078
commit 3dd29cac12
4 changed files with 4 additions and 0 deletions

View File

@ -267,6 +267,7 @@ type (
HpcUmngStorage int64 `json:"hpcUmngStorage"`
Edwc bool `json:"edwc"`
Ydyl bool `json:"ydyl"`
HubCode int64 `json:"hubCode"`
}
)

View File

@ -73,6 +73,7 @@ func (l *ListCenterLogic) ListCenter() (*types.ListCenterResp, error) {
center.HpcUmngStorage = overview.HpcUmngStorage.Int64
center.Edwc = overview.Edwc.Bool
center.Ydyl = overview.Ydyl.Bool
center.HubCode = overview.HubCode.Int64
center.DeletedFlag = overview.DeletedFlag.Int64
centers = append(centers, center)
}

View File

@ -246,6 +246,7 @@ type Center struct {
HpcUmngStorage int64 `json:"hpcUmngStorage"`
Edwc bool `json:"edwc"`
Ydyl bool `json:"ydyl"`
HubCode int64 `json:"hubCode"`
}
type CpResp struct {

View File

@ -59,6 +59,7 @@ type (
HpcUmngStorage sql.NullInt64 `json:"hpcUmngStorage"`
Edwc sql.NullBool `json:"edwc"`
Ydyl sql.NullBool `json:"ydyl"`
HubCode sql.NullInt64 `json:"hubCode"`
}
)