service_select.go 262 B

123456789101112
  1. package forms
  2. type Service struct {
  3. Id int32 `json:"id"`
  4. Name string `json:"name"`
  5. Path string `json:"path"`
  6. IsSelected bool `json:"is_selected"`
  7. }
  8. type ServiceSelectReq struct {
  9. SystemId int32 `json:"system_id" form:"system_id"`
  10. }