23 lines
625 B
Go
23 lines
625 B
Go
package reference
|
|
|
|
type ReadListDto struct {
|
|
ReferenceType ReferenceType `json:"-"`
|
|
PathValue1 string `json:"-"`
|
|
PathValue2 string `json:"-"`
|
|
PathValue3 string `json:"-"`
|
|
}
|
|
|
|
type ReferenceType string
|
|
|
|
const (
|
|
RTProvince ReferenceType = "province"
|
|
RTDistrict ReferenceType = "district"
|
|
RTCities ReferenceType = "cities"
|
|
RTDiagnose ReferenceType = "diagnose"
|
|
RTDiagnosePrb ReferenceType = "diagnose-prb"
|
|
RTMedicinePrb ReferenceType = "medicine-prb"
|
|
RTUnit ReferenceType = "unit"
|
|
RTHealthcare ReferenceType = "healthcare"
|
|
RTDoctor ReferenceType = "doctor"
|
|
)
|