update const

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