Ver código fonte

医保对接

csx 3 anos atrás
pai
commit
2432b20051
1 arquivos alterados com 6 adições e 4 exclusões
  1. 6 4
      models/his_print_models.go

+ 6 - 4
models/his_print_models.go Ver arquivo

@@ -1,10 +1,12 @@
1 1
 package models
2 2
 
3 3
 type PrintPatient struct {
4
-	ID                     int64                   `gorm:"column:id" json:"id" form:"id"`
5
-	UserOrgId              int64                   `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
6
-	Name                   string                  `gorm:"column:name" json:"name" form:"name"`
7
-	Age                    string                  `gorm:"column:age" json:"age" form:"age"`
4
+	ID        int64  `gorm:"column:id" json:"id" form:"id"`
5
+	UserOrgId int64  `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
6
+	Name      string `gorm:"column:name" json:"name" form:"name"`
7
+	Age       string `gorm:"column:age" json:"age" form:"age"`
8
+	Gender    int64  `gorm:"column:gender" json:"gender" form:"gender"`
9
+
8 10
 	HomeAddress            string                  `gorm:"column:home_address" json:"home_address" form:"home_address"`
9 11
 	Phone                  string                  `gorm:"column:phone" json:"phone" form:"phone"`
10 12
 	Lapseto                int64                   `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`