ordonnanceItem.go 780 B

123456789101112131415161718192021222324
  1. package model
  2. type OrdonnanceItem struct {
  3. Id int `json:"id" 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. func (OrdonnanceItem) TableName() string {
  20. return "t_ordonnance_item"
  21. }