Merge pull request 'by Robin at 20240411' (#277) from dev-feat-IRONFANS-70-Robin into feat-IRONFANS-70

Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/277
This commit is contained in:
chenhao 2024-04-11 21:57:03 +08:00
commit c420f41c05
1 changed files with 5 additions and 1 deletions

View File

@ -110,5 +110,9 @@ func (vo *ApiListExtVO) CopyUserVas(userVas *dbstruct.UserVasInfo) {
} }
func (vo *ApiListExtVO) CopyZones(zones []*dbstruct.Zone) { func (vo *ApiListExtVO) CopyZones(zones []*dbstruct.Zone) {
vo.Zones = zones if zones == nil {
vo.Zones = make([]*dbstruct.Zone, 0)
} else {
vo.Zones = zones
}
} }