product.go 267 B

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