product.go 250 B

123456789101112131415
  1. package request
  2. type ProductReq struct {
  3. ProductName string
  4. SourceId int
  5. Type string
  6. Price string
  7. CoverSrc string
  8. ValidDays int
  9. Description string
  10. }
  11. type ProductSaleStatusReq struct {
  12. ProductId int
  13. SaleStatus string
  14. }