package forms type Service struct { Id int32 `json:"id"` Name string `json:"name"` Path string `json:"path"` IsSelected bool `json:"is_selected"` } type ServiceSelectReq struct { SystemId int32 `json:"system_id" form:"system_id"` }