lengkap belum account

This commit is contained in:
2025-05-15 13:45:45 +07:00
parent 1fb1caaf19
commit fd30463082
28 changed files with 1571 additions and 639 deletions

No files matched your search

+18 -18
View File
@@ -6,22 +6,22 @@ import (
)
type EpisodeOfCare struct {
ResourceType string `json:"resourceType" bson:"resourceType,omitempty" `
ID primitive.ObjectID `bson:"_id,omitempty" json:"id" `
Status bool `json:"status" bson:"status"`
StatusHistory []_struct.StatusHistrory `bson:"statusHistory,omitempty" json:"statusHistory" `
Type []_struct.CodeableConcept `bson:"type,omitempty" json:"type" `
Reason []_struct.Reason `bson:"reason,omitempty" json:"reason" `
Diagnosis []_struct.Diagnosis `bson:"diagnosis,omitempty" json:"diagnosis" `
Patient _struct.Reference `bson:"patient,omitempty" json:"patient" `
ManagingOrganization []_struct.Reference `bson:"managingOrganization,omitempty" json:"managingOrganization" `
Period []_struct.Period `bson:"period,omitempty" json:"period" `
ReferralRequest _struct.Reference `bson:"referralRequest,omitempty" json:"referralRequest" `
CareManager _struct.Reference `bson:"careManager,omitempty" json:"careManager" `
CareTeam _struct.Reference `bson:"careTea,omitempty" json:"careTea" `
Account _struct.Reference `bson:"account,omitempty" json:"account" `
CreatedAt string `bson:"createdAt,omitempty" json:"createdAt" `
UpdatedAt string `bson:"updatedAt,omitempty" json:"updatedAt" `
DeletedAt string `bson:"deletedAt,omitempty" json:"deletedAt" `
Extension []_struct.Extension `bson:"extension,omitempty" json:"extension" `
ResourceType string `json:"resourceType" bson:"resourceType,omitempty" `
ID primitive.ObjectID `bson:"_id,omitempty" json:"id" `
Status string `json:"status" bson:"status"`
StatusHistory []_struct.StatusHistrory `bson:"statusHistory,omitempty" json:"statusHistory" `
Type []_struct.CodeableConcept `bson:"type,omitempty" json:"type" `
Reason []_struct.Reason `bson:"reason,omitempty" json:"reason" `
Diagnosis []_struct.Diagnosisepisode `bson:"diagnosis,omitempty" json:"diagnosis" `
Patient _struct.Reference `bson:"patient,omitempty" json:"patient" `
ManagingOrganization _struct.Reference `bson:"managingOrganization,omitempty" json:"managingOrganization" `
Period _struct.Period `bson:"period,omitempty" json:"period" `
ReferralRequest []_struct.Reference `bson:"referralRequest,omitempty" json:"referralRequest" `
CareManager _struct.Reference `bson:"careManager,omitempty" json:"careManager" `
CareTeam []_struct.Reference `bson:"careTea,omitempty" json:"careTea" `
Account []_struct.Reference `bson:"account,omitempty" json:"account" `
CreatedAt string `bson:"createdAt,omitempty" json:"createdAt" `
UpdatedAt string `bson:"updatedAt,omitempty" json:"updatedAt" `
DeletedAt string `bson:"deletedAt,omitempty" json:"deletedAt" `
Extension []_struct.Extension `bson:"extension,omitempty" json:"extension" `
}