mh_server/model/const.go
2021-11-01 11:32:23 +08:00

9 lines
126 B
Go

package model
type UserType uint8
const (
UserTypeConsumer = 1 // 普通用户
UserTypeShopAssistant = 2 // 店员
)