12 lines
242 B
Go
12 lines
242 B
Go
|
package model
|
||
|
|
||
|
type CreateSupplierUserEncrypt struct {
|
||
|
EncryptData string `json:"encryptData"`
|
||
|
}
|
||
|
|
||
|
type CreateSupplierUserRequest struct {
|
||
|
Account string `json:"account"`
|
||
|
Email string `json:"email"`
|
||
|
Password string `json:"password"`
|
||
|
}
|