y595705120 3 年之前
父節點
當前提交
5bda05edae
共有 1 個文件被更改,包括 3 次插入16 次删除
  1. 3 16
      server/model/ordonnanceItem.go

+ 3 - 16
server/model/ordonnanceItem.go

@@ -1,22 +1,9 @@
 package model
 
 type OrdonnanceItem struct {
-	Id               int    `json:"id" 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"`
+	Id   int    `json:"id" gorm:"primaryKey" `
+	Name string `json:"name"`
+	Unit string `json:"unit"`
 }
 
 func (OrdonnanceItem) TableName() string {