https://juejin.cn/post/6942005360416784397
go get golang.org/x/tools/cmd/stringer
//go:generate stringer -type ErrCode -linecomment
type Pill int
const (
Placebo Pill = iota
Aspirin
Ibuprofen
Paracetamol
Acetaminophen = Paracetamol
)
//go:generate stringer -type Pill