types.go 246 B

12345678910111213141516
  1. package controller
  2. type UserController struct {
  3. baseController
  4. }
  5. const (
  6. Decimals = 100000000000
  7. ParticipateValue = 1030
  8. ModBase = 100
  9. CommunityLimit = 1000
  10. CommonUser = 0
  11. OfficialUser = 1
  12. CommunityUsers = 2
  13. )