search & oagination md pasien

This commit is contained in:
Sas Andy
2024-05-29 16:30:42 +07:00
parent fb29e251d9
commit 66ee6a7839
9 changed files with 1507 additions and 12 deletions

47
models/pasien.models.go Normal file
View File

@@ -0,0 +1,47 @@
package models
type Pasien struct {
M_PatientID int `db:"M_PatientID"`
M_PatientNoReg string `db:"M_PatientNoReg"`
M_PatientM_TitleID string `db:"M_PatientM_TitleID"`
M_PatientPrefix string `db:"M_PatientPrefix"`
M_PatientName string `db:"M_PatientName"`
M_PatientSuffix string `db:"M_PatientSuffix"`
M_PatientGender string `db:"M_PatientGender"`
M_PatientDOB string `db:"M_PatientDOB"`
M_PatientReligionCode string `db:"M_PatientReligionCode"`
M_PatientReligionSystem string `db:"M_PatientReligionSystem"`
M_PatientBloodTypeCode string `db:"M_PatientBloodTypeCode"`
M_PatientBloodTypeSystem string `db:"M_PatientBloodTypeSystem"`
M_PatientBloodRhCode string `db:"M_PatientBloodRhCode"`
M_PatientBloodRhSystem string `db:"M_PatientBloodRhSystem"`
M_PatientEducationCode string `db:"M_PatientEducationCode"`
M_PatientEducationSystem string `db:"M_PatientEducationSystem"`
M_PatientCitizenship string `db:"M_PatientCitizenship"`
M_PatientEtnicCode string `db:"M_PatientEtnicCode"`
M_PatientEtnicSystem string `db:"M_PatientEtnicSystem"`
M_PatientIdentifierCode string `db:"M_PatientIdentifierCode"`
M_PatientIdentifierSystem string `db:"M_PatientIdentifierSystem"`
M_PatientIdentifierValue string `db:"M_PatientIdentifierValue"`
M_PatientJob string `db:"M_PatientJob"`
M_PatientPosisi string `db:"M_PatientPosisi"`
M_PatientDivisi string `db:"M_PatientDivisi"`
M_PatientHp string `db:"M_PatientHp"`
M_PatientEmail string `db:"M_PatientEmail"`
M_PatientPhoto string `db:"M_PatientPhoto"`
M_PatientPhotoLastUpdated string `db:"M_PatientPhotoLastUpdated"`
M_PatientPhotoLastUpdatedUserID string `db:"M_PatientPhotoLastUpdatedUserID"`
M_PatientAddress string `db:"M_PatientAddress"`
M_PatientAddressRegionalCd string `db:"M_PatientAddressRegionalCd"`
M_PatientAddressCity string `db:"M_PatientAddressCity"`
M_PatientAddressDistrict string `db:"M_PatientAddressDistrict"`
M_PatientAddressState string `db:"M_PatientAddressState"`
M_PatientAddressCountry string `db:"M_PatientAddressCountry"`
M_PatientIsActive string `db:"M_PatientIsActive"`
M_PatientCreated string `db:"M_PatientCreated"`
M_PatientCreatedUserID string `db:"M_PatientCreatedUserID"`
M_PatientLastUpdated string `db:"M_PatientLastUpdated"`
M_PatientLastUpdatedUserID string `db:"M_PatientLastUpdatedUserID"`
M_PatientDeletedUserID string `db:"M_PatientDeletedUserID"`
M_PatientDeleted string `db:"M_PatientDeleted"`
}