Files
platforms/backend/internal/platform/idn_account.go

11 lines
320 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package platform
// IdnAccount 对应 idn_account表示平台用户的最小账户视图。
type IdnAccount struct {
Identity string `json:"identity"`
PhoneMasked string `json:"phoneMasked"`
AccountType string `json:"accountType"`
Status string `json:"status"`
ServiceArea string `json:"serviceArea"`
}