fonchain-fiee/pkg/service/artistInfo/asUser/dtoRealname.go

16 lines
169 B
Go
Raw Normal View History

2025-02-19 06:24:15 +00:00
package asUser
type SexType string
func (s SexType) ConvertInt() int {
switch s {
case "男":
return 1
case "女":
return 2
default: //其它
return 3
}
}