types.go 535 B

1234567891011121314151617181920
  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. )
  14. var PerformanceLevel = [9]float64{10000 * Decimals, 30000 * Decimals, 100000 * Decimals, 300000 * Decimals,
  15. 1000000 * Decimals, 200 * Decimals, 5000000 * Decimals, 10000000 * Decimals, 50000000 * Decimals}
  16. var PerformanceRatio = [9]float64{0, 0.3, 0.6, 0.9, 0.12, 0.15, 0.17, 0.19, 0.2}