mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 07:02:14 +08:00
8 lines
137 B
Go
8 lines
137 B
Go
package model
|
|
|
|
type MemberInfoGetModel struct {
|
|
Name string `json:"name"`
|
|
Age uint32 `json:"age"`
|
|
Address string `json:"address"`
|
|
}
|