ordonnance.go 865 B

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