GoodsVo.go 178 B

12345678
  1. package vo
  2. import "demo/data/domain"
  3. type GoodsVo struct {
  4. Goods domain.Goods `json:"goods"`
  5. Introduction domain.GoodsIntroduction `json:"introduction"`
  6. }