11 lines
320 B
Go
11 lines
320 B
Go
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"`
|
||
}
|