update const

This commit is contained in:
ari
2025-12-05 09:31:13 +07:00
parent 1a92e4539c
commit dc75980e30
@@ -30,6 +30,7 @@ type (
BornMortalityCode string
BornLocationCode string
SpecimentDestCode string
ProcedureReportType string
)
const (
@@ -225,16 +226,19 @@ const (
BMCAlive BornMortalityCode = "alive"
BMCDead BornMortalityCode = "dead"
BLCExtMiw BornLocationCode = ""
BLCExtDoc BornLocationCode = ""
BLCTradMiw BornLocationCode = ""
BLCLocalMed BornLocationCode = ""
BLCExtParamedic BornLocationCode = ""
BLCExtMiw BornLocationCode = "ext-miw"
BLCExtDoc BornLocationCode = "ext-doc"
BLCTradMiw BornLocationCode = "trad-miw"
BLCLocalMed BornLocationCode = "local-med"
BLCExtParamedic BornLocationCode = "ext-paramedic"
SDCAp SpecimentDestCode = ""
SDCMicro SpecimentDestCode = ""
SDCLab SpecimentDestCode = ""
SDCNone SpecimentDestCode = ""
SDCAp SpecimentDestCode = "ap"
SDCMicro SpecimentDestCode = "micro"
SDCLab SpecimentDestCode = "lab"
SDCNone SpecimentDestCode = "none"
PRTProcedure ProcedureReportType = "procedure"
PRTSurgery ProcedureReportType = "surgery"
)
type Soapi struct {