product_picture.go 178 B

12345678
  1. package entity
  2. type ProductPicture struct {
  3. Id int `db:"id"`
  4. ProductId int `db:"product_id"`
  5. Picture string `db:"picture"`
  6. PicType int `db:"pic_type"`
  7. }