48 lines
902 B
Go
48 lines
902 B
Go
package model
|
|
|
|
// MerchantAdmin 商户管理员信息
|
|
type MerchantAdmin struct {
|
|
}
|
|
|
|
// MerchantLoginIn 商户登录入参
|
|
type MerchantLoginIn struct {
|
|
Phone string
|
|
Username string
|
|
Password string
|
|
Code string
|
|
}
|
|
|
|
type MerchantLoginOut struct {
|
|
Token string
|
|
}
|
|
type MerchantAdminInfoIn struct {
|
|
MerchantAdminId int64
|
|
}
|
|
type MerchantAdminInfoOut struct {
|
|
Username string
|
|
MerchantId int64
|
|
}
|
|
type MerchantAdminCodeIn struct {
|
|
Phone string
|
|
}
|
|
type MerchantAdminCodeOut struct {
|
|
}
|
|
type MerchantAdminVertifyPhoneIn struct {
|
|
MerchantAdminId int64
|
|
Phone string
|
|
Code string
|
|
}
|
|
type MerchantAdminVertifyPhoneOut struct {
|
|
}
|
|
type MerchantAdminRegisterIn struct {
|
|
Username string
|
|
Phone string
|
|
Password string
|
|
Password2 string
|
|
Code string
|
|
ApplicationReason string
|
|
}
|
|
type MerchantAdminRegisterOut struct {
|
|
Success bool
|
|
}
|