userext.go 356 B

123456789101112131415161718192021222324
  1. package model
  2. //ConfValues 配置
  3. type ConfValues map[int64]string
  4. const (
  5. // Empty 空
  6. Empty = ""
  7. // Set 存在
  8. Set = "1"
  9. // GoldTarget 金瓜子
  10. GoldTarget = 1010
  11. // SilverTarget 银瓜子
  12. SilverTarget = 1011
  13. )
  14. // IsSet 是否存在
  15. func (vs ConfValues) IsSet(key int64) bool {
  16. v, ok := vs[key]
  17. if !ok {
  18. return false
  19. }
  20. return v == Set
  21. }