You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
363 B
Go
13 lines
363 B
Go
![]()
3 weeks ago
|
package user
|
||
|
|
||
|
// UserDto 用户数据传输对象
|
||
|
type UserDto struct {
|
||
|
Uid uint64 `json:"uid"`
|
||
|
Username string `json:"username" binding:"required"`
|
||
|
Phone string `json:"phone" binding:"required"`
|
||
|
Password bool `json:"password,omitempty"`
|
||
|
GiftCount int8 `json:"giftCount"`
|
||
|
Status int8 `json:"status"`
|
||
|
Remark string `json:"remark"`
|
||
|
}
|