service_select.go 204 B

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