2026-07-02 10:53:44 +08:00

9 lines
208 B
Go

package team
type teamRequest struct {
Name string `json:"name" binding:"required"`
ParentID *uint `json:"parentId"`
Description string `json:"description"`
Sort int `json:"sort"`
}