Merge branch 'migration' of github.com:dikstub-rssa/simrs-be into fix/anything-moko
This commit is contained in:
No files matched your search
@@ -0,0 +1,11 @@
|
|||||||
|
-- Create "Resume" table
|
||||||
|
CREATE TABLE "public"."Resume" (
|
||||||
|
"Id" bigserial NOT NULL,
|
||||||
|
"CreatedAt" timestamptz NULL,
|
||||||
|
"UpdatedAt" timestamptz NULL,
|
||||||
|
"DeletedAt" timestamptz NULL,
|
||||||
|
"Encounter_Id" bigint NOT NULL,
|
||||||
|
"Value" text NULL,
|
||||||
|
"FileUrl" character varying(1024) NULL,
|
||||||
|
PRIMARY KEY ("Id")
|
||||||
|
);
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
-- Create "VclaimReference" table
|
||||||
|
CREATE TABLE "public"."VclaimReference" (
|
||||||
|
"Id" bigserial NOT NULL,
|
||||||
|
"CreatedAt" timestamptz NULL,
|
||||||
|
"UpdatedAt" timestamptz NULL,
|
||||||
|
"DeletedAt" timestamptz NULL,
|
||||||
|
"Encounter_Id" bigint NULL,
|
||||||
|
"Date" timestamptz NULL,
|
||||||
|
"SrcCode" text NULL,
|
||||||
|
"SrcName" text NULL,
|
||||||
|
"Number" text NULL,
|
||||||
|
PRIMARY KEY ("Id"),
|
||||||
|
CONSTRAINT "fk_Encounter_VclaimReference" FOREIGN KEY ("Encounter_Id") REFERENCES "public"."Encounter" ("Id") ON UPDATE NO ACTION ON DELETE NO ACTION
|
||||||
|
);
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
-- Modify "Resume" table
|
||||||
|
ALTER TABLE "public"."Resume" ADD COLUMN "Doctor_Code" character varying(10) NULL, ADD COLUMN "Status_Code" character varying(10) NOT NULL, ADD CONSTRAINT "fk_Resume_Doctor" FOREIGN KEY ("Doctor_Code") REFERENCES "public"."Doctor" ("Code") ON UPDATE NO ACTION ON DELETE NO ACTION;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
h1:4ab+A8iOO9wdTsRlY3sxe8ge29VhYaHMyq+qQCEN2UE=
|
h1:87NyL1nIRuVvOiLbfdC1+PF+v2R/joAnBYyh2CrlGdU=
|
||||||
20250904105930.sql h1:MEM6blCgke9DzWQSTnLzasbPIrcHssNNrJqZpSkEo6k=
|
20250904105930.sql h1:MEM6blCgke9DzWQSTnLzasbPIrcHssNNrJqZpSkEo6k=
|
||||||
20250904141448.sql h1:J8cmYNk4ZrG9fhfbi2Z1IWz7YkfvhFqTzrLFo58BPY0=
|
20250904141448.sql h1:J8cmYNk4ZrG9fhfbi2Z1IWz7YkfvhFqTzrLFo58BPY0=
|
||||||
20250908062237.sql h1:Pu23yEW/aKkwozHoOuROvHS/GK4ngARJGdO7FB7HZuI=
|
20250908062237.sql h1:Pu23yEW/aKkwozHoOuROvHS/GK4ngARJGdO7FB7HZuI=
|
||||||
@@ -126,3 +126,6 @@ h1:4ab+A8iOO9wdTsRlY3sxe8ge29VhYaHMyq+qQCEN2UE=
|
|||||||
20251119072302.sql h1:qCuI2WMEMF/XNbjV+RXPjBnuCKLu1Fia+mR9HiLWBIs=
|
20251119072302.sql h1:qCuI2WMEMF/XNbjV+RXPjBnuCKLu1Fia+mR9HiLWBIs=
|
||||||
20251119072450.sql h1:Xg+bTwqGyKPNFEQhJylvpz1wifdfmDJvcAq6vmNf0Ng=
|
20251119072450.sql h1:Xg+bTwqGyKPNFEQhJylvpz1wifdfmDJvcAq6vmNf0Ng=
|
||||||
20251120005512.sql h1:Ek6qpacAI/qVuTYxKno+uJyzn7s5z9pf3t7VA8gTzm4=
|
20251120005512.sql h1:Ek6qpacAI/qVuTYxKno+uJyzn7s5z9pf3t7VA8gTzm4=
|
||||||
|
20251120074415.sql h1:NNUeJVA03EeBHJhHqPXEZoDv/PnC6yK1/cRhmukyaJo=
|
||||||
|
20251121033803.sql h1:/vfvFX/3pzSCIHnSbMUT9EMBDykOpVkvyfeTEle9Vas=
|
||||||
|
20251124071457.sql h1:HBaNJQIzUe6wK8CgBxamuKor7ZiAASzgkkXzL6kWsjY=
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
package vclaimreference
|
||||||
|
|
||||||
|
import (
|
||||||
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type CreateDto struct {
|
||||||
|
Encounter_Id *uint `json:"encounter_id"`
|
||||||
|
Date *time.Time `json:"date"`
|
||||||
|
SrcCode *string `json:"src_code"`
|
||||||
|
SrcName *string `json:"src_name"`
|
||||||
|
Number *string `json:"number"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReadListDto struct {
|
||||||
|
FilterDto
|
||||||
|
Includes string `json:"includes"`
|
||||||
|
Sort string `json:"sort"`
|
||||||
|
Pagination ecore.Pagination
|
||||||
|
}
|
||||||
|
|
||||||
|
type FilterDto struct {
|
||||||
|
Encounter_Id *uint `json:"encounter-id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReadDetailDto struct {
|
||||||
|
Id uint `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UpdateDto struct {
|
||||||
|
Id uint `json:"id"`
|
||||||
|
CreateDto
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteDto struct {
|
||||||
|
Id uint `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MetaDto struct {
|
||||||
|
PageNumber int `json:"page_number"`
|
||||||
|
PageSize int `json:"page_size"`
|
||||||
|
Count int `json:"count"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ResponseDto struct {
|
||||||
|
ecore.Main
|
||||||
|
Encounter_Id *uint `json:"encounter_id"`
|
||||||
|
Date *time.Time `json:"date"`
|
||||||
|
SrcCode *string `json:"src_code"`
|
||||||
|
SrcName *string `json:"src_name"`
|
||||||
|
Number *string `json:"number"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d VclaimReference) ToResponse() ResponseDto {
|
||||||
|
resp := ResponseDto{
|
||||||
|
Encounter_Id: d.Encounter_Id,
|
||||||
|
Date: d.Date,
|
||||||
|
SrcCode: d.SrcCode,
|
||||||
|
SrcName: d.SrcName,
|
||||||
|
Number: d.Number,
|
||||||
|
}
|
||||||
|
resp.Main = d.Main
|
||||||
|
return resp
|
||||||
|
}
|
||||||
|
|
||||||
|
func ToResponseList(data []VclaimReference) []ResponseDto {
|
||||||
|
resp := make([]ResponseDto, len(data))
|
||||||
|
for i, u := range data {
|
||||||
|
resp[i] = u.ToResponse()
|
||||||
|
}
|
||||||
|
return resp
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
package vclaimreference
|
||||||
|
|
||||||
|
import (
|
||||||
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type VclaimReference struct {
|
||||||
|
ecore.Main
|
||||||
|
Encounter_Id *uint `json:"encounter_id"`
|
||||||
|
Date *time.Time `json:"date"`
|
||||||
|
SrcCode *string `json:"src_code"`
|
||||||
|
SrcName *string `json:"src_name"`
|
||||||
|
Number *string `json:"number"`
|
||||||
|
}
|
||||||
@@ -1,7 +1,13 @@
|
|||||||
package encounter
|
package encounter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
|
erc "simrs-vx/internal/domain/references/common"
|
||||||
|
ere "simrs-vx/internal/domain/references/encounter"
|
||||||
|
|
||||||
ecore "simrs-vx/internal/domain/base-entities/core"
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
||||||
|
evr "simrs-vx/internal/domain/bpjs-entities/vclaim-reference"
|
||||||
evs "simrs-vx/internal/domain/bpjs-entities/vclaim-sep"
|
evs "simrs-vx/internal/domain/bpjs-entities/vclaim-sep"
|
||||||
eam "simrs-vx/internal/domain/main-entities/ambulatory"
|
eam "simrs-vx/internal/domain/main-entities/ambulatory"
|
||||||
ea "simrs-vx/internal/domain/main-entities/appointment"
|
ea "simrs-vx/internal/domain/main-entities/appointment"
|
||||||
@@ -19,10 +25,6 @@ import (
|
|||||||
es "simrs-vx/internal/domain/main-entities/specialist"
|
es "simrs-vx/internal/domain/main-entities/specialist"
|
||||||
ess "simrs-vx/internal/domain/main-entities/subspecialist"
|
ess "simrs-vx/internal/domain/main-entities/subspecialist"
|
||||||
eu "simrs-vx/internal/domain/main-entities/unit"
|
eu "simrs-vx/internal/domain/main-entities/unit"
|
||||||
|
|
||||||
erc "simrs-vx/internal/domain/references/common"
|
|
||||||
ere "simrs-vx/internal/domain/references/encounter"
|
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Encounter struct {
|
type Encounter struct {
|
||||||
@@ -74,6 +76,7 @@ type Encounter struct {
|
|||||||
RehabChildren *[]er.Basic `json:"rehabChildren,omitempty" gorm:"foreignKey:Parent_Encounter_Id;references:Id"`
|
RehabChildren *[]er.Basic `json:"rehabChildren,omitempty" gorm:"foreignKey:Parent_Encounter_Id;references:Id"`
|
||||||
EncounterDocuments *[]eed.EncounterDocument `json:"encounterDocuments,omitempty" gorm:"foreignKey:Encounter_Id;references:Id"`
|
EncounterDocuments *[]eed.EncounterDocument `json:"encounterDocuments,omitempty" gorm:"foreignKey:Encounter_Id;references:Id"`
|
||||||
GeneralConsents *[]egc.GeneralConsent `json:"generalConsents,omitempty" gorm:"foreignKey:Encounter_Id;references:Id"`
|
GeneralConsents *[]egc.GeneralConsent `json:"generalConsents,omitempty" gorm:"foreignKey:Encounter_Id;references:Id"`
|
||||||
|
VclaimReference *evr.VclaimReference `json:"vclaimReference,omitempty" gorm:"foreignKey:Encounter_Id;references:Id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d Encounter) IsDone() bool {
|
func (d Encounter) IsDone() bool {
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
package resume
|
||||||
|
|
||||||
|
import (
|
||||||
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
||||||
|
)
|
||||||
|
|
||||||
|
type CreateDto struct {
|
||||||
|
Encounter_Id *uint `json:"encounter_id"`
|
||||||
|
Value *string `json:"value"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReadListDto struct {
|
||||||
|
FilterDto
|
||||||
|
Includes string `json:"includes"`
|
||||||
|
Pagination ecore.Pagination
|
||||||
|
}
|
||||||
|
|
||||||
|
type FilterDto struct {
|
||||||
|
Encounter_Id *uint `json:"encounter-id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReadDetailDto struct {
|
||||||
|
Id uint `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UpdateDto struct {
|
||||||
|
Id uint `json:"id"`
|
||||||
|
CreateDto
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteDto struct {
|
||||||
|
Id uint `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MetaDto struct {
|
||||||
|
PageNumber int `json:"page_number"`
|
||||||
|
PageSize int `json:"page_size"`
|
||||||
|
Count int `json:"count"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ResponseDto struct {
|
||||||
|
ecore.Main
|
||||||
|
Encounter_Id *uint `json:"encounter_id"`
|
||||||
|
Value *string `json:"value"`
|
||||||
|
FileUrl *string `json:"fileUrl"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d Resume) ToResponse() ResponseDto {
|
||||||
|
resp := ResponseDto{
|
||||||
|
Encounter_Id: d.Encounter_Id,
|
||||||
|
Value: d.Value,
|
||||||
|
FileUrl: d.FileUrl,
|
||||||
|
}
|
||||||
|
resp.Main = d.Main
|
||||||
|
return resp
|
||||||
|
}
|
||||||
|
|
||||||
|
func ToResponseList(data []Resume) []ResponseDto {
|
||||||
|
resp := make([]ResponseDto, len(data))
|
||||||
|
for i, u := range data {
|
||||||
|
resp[i] = u.ToResponse()
|
||||||
|
}
|
||||||
|
return resp
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
package resume
|
||||||
|
|
||||||
|
import (
|
||||||
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
||||||
|
ed "simrs-vx/internal/domain/main-entities/doctor"
|
||||||
|
|
||||||
|
erc "simrs-vx/internal/domain/references/common"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Resume struct {
|
||||||
|
ecore.Main
|
||||||
|
Encounter_Id *uint `json:"encounter_id" gorm:"not null"`
|
||||||
|
Doctor_Code *string `json:"doctor_code" gorm:"size:10"`
|
||||||
|
Doctor *ed.Doctor `json:"doctor,omitempty" gorm:"foreignKey:Doctor_Code;references:Code"`
|
||||||
|
Value *string `json:"value"`
|
||||||
|
FileUrl *string `json:"fileUrl" gorm:"size:1024"`
|
||||||
|
Status_Code erc.DataVerifiedCode `json:"status_code" gorm:"not null;size:10"`
|
||||||
|
}
|
||||||
@@ -117,12 +117,14 @@ const (
|
|||||||
MULCPF McuUrgencyLevelCode = "priority-form" // Form Prioritas
|
MULCPF McuUrgencyLevelCode = "priority-form" // Form Prioritas
|
||||||
MULCRT McuUrgencyLevelCode = "routine" // Pemeriksaan Rutin
|
MULCRT McuUrgencyLevelCode = "routine" // Pemeriksaan Rutin
|
||||||
|
|
||||||
//STCEarlyNurse SoapiTypeCode = "early-nurse" // Kajian Awal Medis
|
STCEarlyNurse SoapiTypeCode = "early-nursery" // Kajian Awal Keperawatan
|
||||||
STCEEarlyMedic SoapiTypeCode = "early-medic" // Kajian Awal Rehab Medis
|
STCEEarlyMedic SoapiTypeCode = "early-medic" // Kajian Awal Rehab Medis
|
||||||
STCEarlyRehab SoapiTypeCode = "early-rehab" // Kajian Awal Rehab Medik
|
STCEarlyRehab SoapiTypeCode = "early-rehab" // Kajian Awal Rehab Medik
|
||||||
STCFunc SoapiTypeCode = "function" // Assessment Fungsi
|
STCFunc SoapiTypeCode = "function" // Assessment Fungsi
|
||||||
STCProgress SoapiTypeCode = "progress" // CPPT
|
STCProgress SoapiTypeCode = "progress" // CPPT
|
||||||
STCDevRecord SoapiTypeCode = "dev-record" // Catatan Perkembangan
|
STCDevRecord SoapiTypeCode = "dev-record" // Catatan Perkembangan
|
||||||
|
STCKfrAdm SoapiTypeCode = "kfr-adm" // soapi untuk kfr
|
||||||
|
STCKfrSeries SoapiTypeCode = "kfr-series" // soapi untuk kfr
|
||||||
|
|
||||||
MATCChemo MedicalActionTypeCode = "chemo"
|
MATCChemo MedicalActionTypeCode = "chemo"
|
||||||
MATCHemo MedicalActionTypeCode = "hemo"
|
MATCHemo MedicalActionTypeCode = "hemo"
|
||||||
|
|||||||
@@ -72,9 +72,11 @@ const (
|
|||||||
DACAvailable DataAvailabilityCode = "available" // Tersedia
|
DACAvailable DataAvailabilityCode = "available" // Tersedia
|
||||||
DACUnavailable DataAvailabilityCode = "unavailable" // Tidak Tersedia
|
DACUnavailable DataAvailabilityCode = "unavailable" // Tidak Tersedia
|
||||||
|
|
||||||
DVCNew DataVerifiedCode = "new" // Baru
|
DVCNew DataVerifiedCode = "new" // Baru
|
||||||
DVCVerified DataVerifiedCode = "verified" // Terverifikasi
|
DVCVerified DataVerifiedCode = "verified" // Terverifikasi
|
||||||
DVCRejected DataVerifiedCode = "rejected" // Ditolak
|
DVCValidated DataVerifiedCode = "validated" // Tervalidasi
|
||||||
|
DVCCancelled DataVerifiedCode = "cancelled" // Dibatalkan
|
||||||
|
DVCRejected DataVerifiedCode = "rejected" // Ditolak
|
||||||
|
|
||||||
USCNew UserStatusCode = "new" // Baru
|
USCNew UserStatusCode = "new" // Baru
|
||||||
USCActive UserStatusCode = "active" // Aktif
|
USCActive UserStatusCode = "active" // Aktif
|
||||||
|
|||||||
@@ -121,6 +121,7 @@ const (
|
|||||||
DTCSIPP DocTypeCode = "vclaim-sipp" // SIPP
|
DTCSIPP DocTypeCode = "vclaim-sipp" // SIPP
|
||||||
DTCGC DocTypeCode = "general-consent"
|
DTCGC DocTypeCode = "general-consent"
|
||||||
DTCVSCL DocTypeCode = "vclaim-control-letter" // vclaim control letter
|
DTCVSCL DocTypeCode = "vclaim-control-letter" // vclaim control letter
|
||||||
|
DTCResume DocTypeCode = "resume" // Resume
|
||||||
|
|
||||||
ETCPerson EntityTypeCode = "person"
|
ETCPerson EntityTypeCode = "person"
|
||||||
ETCEncounter EntityTypeCode = "encounter"
|
ETCEncounter EntityTypeCode = "encounter"
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
package installation
|
package m_instalasi
|
||||||
|
|
||||||
type MInstalasi struct {
|
type MInstalasi struct {
|
||||||
No_Instalasi uint `json:"no_instalasi" gorm:"primaryKey;autoIncrement;column:no_instalasi"`
|
No_Instalasi uint `json:"no_instalasi" gorm:"primaryKey;autoIncrement;column:no_instalasi"`
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
package patient
|
package m_pasien
|
||||||
|
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
+3
-3
@@ -1,11 +1,11 @@
|
|||||||
package unit
|
package m_poly
|
||||||
|
|
||||||
type MPloy struct {
|
type MPoly struct {
|
||||||
Kode uint `json:"kode" gorm:"primaryKey;autoIncrement;column:kode"`
|
Kode uint `json:"kode" gorm:"primaryKey;autoIncrement;column:kode"`
|
||||||
Nama string `json:"nama" gorm:"column:nama"`
|
Nama string `json:"nama" gorm:"column:nama"`
|
||||||
Jenispoly uint `json:"jenispoly" gorm:"column:jenispoly"`
|
Jenispoly uint `json:"jenispoly" gorm:"column:jenispoly"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (MPloy) TableName() string {
|
func (MPoly) TableName() string {
|
||||||
return "m_poly"
|
return "m_poly"
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
package division
|
package m_unit
|
||||||
|
|
||||||
type MUnit struct {
|
type MUnit struct {
|
||||||
KodeUnit uint `json:"kode_unit" gorm:"primaryKey;autoIncrement;column:kode_unit"`
|
KodeUnit uint `json:"kode_unit" gorm:"primaryKey;autoIncrement;column:kode_unit"`
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
package t_pemeriksaan_hist
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
|
type TPemeriksaanHist struct {
|
||||||
|
IdPemeriksaanHist uint `json:"id_pemeriksaanhist" gorm:"primaryKey;column:id_pemeriksaanhist"`
|
||||||
|
Idxdaftar *uint `json:"idxdaftar" gorm:"column:idxdaftar"`
|
||||||
|
Kdpoly *uint `json:"kdpoly" gorm:"column:kdpoly"`
|
||||||
|
DokterPengonsul *uint `json:"dokter_pengonsul" gorm:"column:dokter_pengonsul"`
|
||||||
|
DokterPenerima *uint `json:"dokter_penerima" gorm:"column:dokter_penerima"`
|
||||||
|
StartKonsul *time.Time `json:"start_konsul" gorm:"column:start_konsul"`
|
||||||
|
EndKonsul *time.Time `json:"end_konsul" gorm:"column:end_konsul"`
|
||||||
|
UserKonsul *string `json:"user_konsul" gorm:"column:user_konsul;size:100"`
|
||||||
|
TglEntriKonsul *time.Time `json:"tgl_entri_konsul" gorm:"column:tgl_entri_konsul"`
|
||||||
|
IP *string `json:"ip" gorm:"column:ip;size:50"`
|
||||||
|
UserPenerima *string `json:"user_penerima" gorm:"column:user_penerima;size:100"`
|
||||||
|
MasukPoly *time.Time `json:"masuk_poly" gorm:"column:masuk_poly"`
|
||||||
|
PerawatPenerima *uint `json:"perawat_penerima" gorm:"column:perawat_penerima"`
|
||||||
|
StAktif *uint16 `json:"st_aktif" gorm:"column:st_aktif"`
|
||||||
|
UserBatal *string `json:"user_batal" gorm:"column:user_batal;size:100"`
|
||||||
|
TglBatal *time.Time `json:"tgl_batal" gorm:"column:tgl_batal"`
|
||||||
|
IdxBillRajal *uint `json:"idxbillrajal" gorm:"column:idxbillrajal"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (TPemeriksaanHist) TableName() string {
|
||||||
|
return "t_pemeriksaan_hist"
|
||||||
|
}
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
package encounter
|
package t_pendaftaran
|
||||||
|
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
@@ -82,6 +82,7 @@ import (
|
|||||||
regency "simrs-vx/internal/domain/main-entities/regency"
|
regency "simrs-vx/internal/domain/main-entities/regency"
|
||||||
rehab "simrs-vx/internal/domain/main-entities/rehab"
|
rehab "simrs-vx/internal/domain/main-entities/rehab"
|
||||||
responsibledoctorhist "simrs-vx/internal/domain/main-entities/responsible-doctor-hist"
|
responsibledoctorhist "simrs-vx/internal/domain/main-entities/responsible-doctor-hist"
|
||||||
|
resume "simrs-vx/internal/domain/main-entities/resume"
|
||||||
room "simrs-vx/internal/domain/main-entities/room"
|
room "simrs-vx/internal/domain/main-entities/room"
|
||||||
sbar "simrs-vx/internal/domain/main-entities/sbar"
|
sbar "simrs-vx/internal/domain/main-entities/sbar"
|
||||||
soapi "simrs-vx/internal/domain/main-entities/soapi"
|
soapi "simrs-vx/internal/domain/main-entities/soapi"
|
||||||
@@ -102,6 +103,7 @@ import (
|
|||||||
|
|
||||||
///BPJS
|
///BPJS
|
||||||
vclaimmember "simrs-vx/internal/domain/bpjs-entities/vclaim-member"
|
vclaimmember "simrs-vx/internal/domain/bpjs-entities/vclaim-member"
|
||||||
|
vclaimreference "simrs-vx/internal/domain/bpjs-entities/vclaim-reference"
|
||||||
vclaimsep "simrs-vx/internal/domain/bpjs-entities/vclaim-sep"
|
vclaimsep "simrs-vx/internal/domain/bpjs-entities/vclaim-sep"
|
||||||
vclaimsepcontrolletter "simrs-vx/internal/domain/bpjs-entities/vclaim-sep-control-letter"
|
vclaimsepcontrolletter "simrs-vx/internal/domain/bpjs-entities/vclaim-sep-control-letter"
|
||||||
vclaimsephist "simrs-vx/internal/domain/bpjs-entities/vclaim-sep-hist"
|
vclaimsephist "simrs-vx/internal/domain/bpjs-entities/vclaim-sep-hist"
|
||||||
@@ -213,5 +215,7 @@ func getMainEntities() []any {
|
|||||||
&chemoprotocol.ChemoProtocol{},
|
&chemoprotocol.ChemoProtocol{},
|
||||||
&fileattachemnt.EncounterDocument{},
|
&fileattachemnt.EncounterDocument{},
|
||||||
&vclaimsepcontrolletter.VclaimSepControlLetter{},
|
&vclaimsepcontrolletter.VclaimSepControlLetter{},
|
||||||
|
&resume.Resume{},
|
||||||
|
&vclaimreference.VclaimReference{},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user