fix code crud user and insert master data for fhir

This commit is contained in:
2025-03-07 11:11:44 +07:00
parent 26271ef9e3
commit a0fdf0240f
18 changed files with 940 additions and 54 deletions
+16
View File
@@ -0,0 +1,16 @@
package master_data
type ReqInsertData struct {
ID string `bson:"_id"`
Table string `bson:"table"`
System string `bson:"system"`
Code string `bson:"code"`
Display string `bson:"display"`
}
type ReqInsertDataMaster struct {
ID string `bson:"_id"`
System string `bson:"system"`
Code string `bson:"code"`
Display string `bson:"display"`
}