fix(region): dns zone registrar charset (#23149)

This commit is contained in:
屈轩
2025-08-21 11:34:31 +08:00
committed by GitHub
parent dbf91c8b81
commit 8b3cc35bc3
+1 -1
View File
@@ -74,7 +74,7 @@ type SDnsZone struct {
OriginalNameServers *api.SNameServers `width:"256" charset:"utf8" nullable:"true" list:"user" create:"optional"`
ZoneType string `width:"32" charset:"ascii" nullable:"false" list:"domain" create:"domain_required"`
Registrar string `width:"32" charset:"ascii" nullable:"true" list:"domain" create:"domain_optional"`
Registrar string `width:"32" charset:"utf8" nullable:"true" list:"domain" create:"domain_optional"`
ProductType string `width:"32" charset:"ascii" nullable:"false" list:"domain" create:"domain_optional"`
}