Advertisement
erkayes935

transaction_model

Dec 29th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.79 KB | None | 0 0
  1. package model
  2.  
  3. type Transaction struct {
  4.     Message string     `json:"message"`
  5.     Data    BillDetail `json:"data"`
  6. }
  7.  
  8. type AllTransaction struct {
  9.     Message string       `json:"message"`
  10.     Data    []BillDetail `json:"data"`
  11. }
  12.  
  13. type BillDetails struct {
  14.     Id           string `json:"id"`
  15.     BillId       string `json:"billid"`
  16.     ProductId    string `json:"productid"`
  17.     ProductPrice int    `json:"productprice"`
  18.     Qty          int    `json:"qty"`
  19. }
  20.  
  21. type BillDetail struct {
  22.     Id          string        `json:"id"`
  23.     BillDate    string        `json:"billdate"`
  24.     EntryDate   string        `json:"entrydate"`
  25.     FinishDate  string        `json:"finishdate"`
  26.     EmployeeId  string        `json:"employeeid"`
  27.     CustomerId  string        `json:"customerid"`
  28.     BillDetails []BillDetails `json:"billdetails"`
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement