|
@@ -744,6 +744,19 @@ func (XtInspection) TableName() string {
|
744
|
744
|
return "xt_inspection"
|
745
|
745
|
}
|
746
|
746
|
|
|
747
|
+type BloodXtPatients struct {
|
|
748
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
749
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
750
|
+ DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
|
|
751
|
+ Name string `gorm:"column:name" json:"name" form:"name"`
|
|
752
|
+ IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
|
|
753
|
+}
|
|
754
|
+
|
|
755
|
+func (BloodXtPatients) TableName() string {
|
|
756
|
+
|
|
757
|
+ return "xt_patients"
|
|
758
|
+}
|
|
759
|
+
|
747
|
760
|
type XtPatients struct {
|
748
|
761
|
ID int64 `gorm:"column:id" json:"id" form:"id"`
|
749
|
762
|
UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|