| 1234567891011121314151617181920212223242526272829 | package modeltype Ordonnance struct {	OrdonnanceId     int    `json:"ordonnanceId" gorm:"primaryKey" `	Organ            string `json:"organ"`	Nickname         string `json:"nickname"`	Symptom          string `json:"symptom"`	Doctor           string `json:"doctor"`	TakingWay        string `json:"takingWay"`	DosageConfirm    string `json:"dosageConfirm"`	ProvideConfirm   string `json:"provideConfirm"`	PrescriptionSign string `json:"prescriptionSign"`	ReviewSign       string `json:"reviewSign"`	PrintDate        string `json:"printDate"`	TotalFee    uint16 `json:"totalFee"`	ChineseFee  uint16 `json:"chineseFee"`	BoilFee     uint16 `json:"boilFee"`	DeliveryFee uint16 `json:"deliveryFee"`}type VordonnanceDetail struct {	Ordonnance	Detail []OrdonnanceItem `json:"detail"`}func (Ordonnance) TableName() string {	return "t_ordonnance"}
 |