mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
11 lines
191 B
Go
11 lines
191 B
Go
package vo
|
|
|
|
// 用户选择项目
|
|
type AccountProject struct {
|
|
Id uint64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type AccountProjects []AccountProject
|