package adapter

// 人员选择列表
type UserItem struct {
	Id    int64  `json:"id,string"`
	Name  string `json:"name"`
	Level int    `json:"level"`
}