27 lines
546 B
Go
27 lines
546 B
Go
package digitalsignature
|
|
|
|
type (
|
|
RMEType string
|
|
SignType string
|
|
)
|
|
|
|
const (
|
|
// modules
|
|
RMETypePrescription RMEType = "prescription"
|
|
RMETypeExamination RMEType = "examination"
|
|
RMETypeRadiology RMEType = "radiology"
|
|
RMETypeSick RMEType = "sick"
|
|
RMETypeReferral RMEType = "referral"
|
|
RMETypeEndOfLife RMEType = "endoflife"
|
|
RMETypeChangeDpjp RMEType = "changedpjp"
|
|
|
|
// employee
|
|
SignTypeEmployee SignType = "employee"
|
|
|
|
// doctor
|
|
SignTypeDoctor SignType = "doctor"
|
|
|
|
// patient
|
|
SignTypePatient SignType = "patient"
|
|
)
|