ordonnance.go 1021 B

123456789101112131415161718192021222324252627282930313233
  1. package model
  2. type Ordonnance struct {
  3. OrdonnanceId int `json:"ordonnanceId" gorm:"primaryKey" `
  4. Organ string `json:"organ"`
  5. Gender string `json:"gender"`
  6. Department string `json:"department"`
  7. Nickname string `json:"nickname"`
  8. Symptom string `json:"symptom"`
  9. Doctor string `json:"doctor"`
  10. TakingWay string `json:"takingWay"`
  11. DosageConfirm string `json:"dosageConfirm"`
  12. ProvideConfirm string `json:"provideConfirm"`
  13. PrescriptionSign string `json:"prescriptionSign"`
  14. ReviewSign string `json:"reviewSign"`
  15. PrintDate string `json:"printDate"`
  16. TotalFee uint16 `json:"totalFee"`
  17. ChineseFee uint16 `json:"chineseFee"`
  18. BoilFee uint16 `json:"boilFee"`
  19. DeliveryFee uint16 `json:"deliveryFee"`
  20. Counter uint16 `json:"counter"`
  21. Old uint16 `json:"old"`
  22. }
  23. type VordonnanceDetail struct {
  24. Ordonnance
  25. Detail []OrdonnanceItem `json:"detail"`
  26. }
  27. func (Ordonnance) TableName() string {
  28. return "t_ordonnance"
  29. }