common.go 219 B

12345678910111213
  1. package common
  2. // 基本类型
  3. type Base struct {
  4. ID int `json:"id"`
  5. Name string `json:"name"`
  6. }
  7. type BaseWithColor struct {
  8. ID int `json:"id"`
  9. Name string `json:"name"`
  10. Color string `json:"color"`
  11. }