common.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package common
  2. import (
  3. "math/rand"
  4. "strconv"
  5. "strings"
  6. "time"
  7. )
  8. // Operation type 操作类型
  9. const (
  10. OperationDefault = iota
  11. OperationLogin //登录
  12. OperationLogout //注销
  13. OperationCreate //新增
  14. OperationUpdate //修改
  15. OperationRemove //删除
  16. OperationImport //导入导出
  17. OperationLightStrategy //开关灯控策略
  18. OperationOrderCreate //工单发起
  19. OperationOrderChange //工单转派
  20. OperationOrderHandle //工单处理
  21. OperationProgramPublish //节目发布待审核
  22. OperationProgramResult //节目处理结果
  23. OperationStrategyRelation //策略关联
  24. OperationControl //操作
  25. OperationAlarmHandle //告警处理
  26. OperationSuccess = 0
  27. OperationFail = 1
  28. )
  29. const (
  30. ModuleTypeDefault = iota //操作记录模块
  31. ModuleTypeDevice //设备台账管理
  32. ModuleTypeInfoBar //信息发布系统
  33. ModuleTypeOrder //工单运维
  34. ModuleTypeNotification //通知公告
  35. ModuleTypeLightStrategy //照明策略
  36. ModuleTypeLighting //智慧照明系统-智能照明
  37. ModuleTypeSystem //系统管理
  38. ModuleTypeAlarm //告警管理
  39. ModuleTypeOperation //运营分析
  40. ModuleTypeRecord //记录处理
  41. ModuleTypeWisdomLighting //智能感应照明系统-灯随车走照明控制
  42. )
  43. // deviceType 设备类型 1** 交通 2** 农业
  44. const (
  45. DeviceTypeDefault = 0 //--
  46. DeviceTypeCamera = 100 //摄像头
  47. DeviceTypeLightControl = 101 //灯控
  48. DeviceTypeInfoBoard = 102 //信息屏
  49. DeviceTypeSwitchBox = 103 //配电箱
  50. DeviceTypeGateway = 104 //网关
  51. DeviceTypeOptoSensor = 105 // 环境监测
  52. DeviceTypeZigbee = 106 //ZigBee
  53. DeviceTypeAlarmTerminal = 107 //一键告警终端
  54. DeviceTypeAlarmServer = 108 //一键告警服务端
  55. DeviceTypeBridgeSensor = 109 //桥梁传感器
  56. DeviceTypeBridge = 110 //桥梁
  57. DeviceTypeIPBroadcast = 111 //ip音柱
  58. DeviceTypeManholeCover = 112 //井盖
  59. DeviceTypeGarbage = 113 //垃圾桶
  60. DeviceTypeLampPoleGroup = 114 //灯杆分组
  61. DeviceTypeLampPole = 115 //灯杆
  62. DeviceTypeCaptureUnit = 116 //抓拍单元
  63. DeviceTypePoint = 117 //卡口
  64. DeviceTypeGarbageGroup = 118 //垃圾桶分组
  65. DeviceTypeLightStrategy = 119 //灯控策略
  66. DeviceTypeOnDemandGroup = 120 //灯随车走分组
  67. DeviceTypeOnDemandSensor = 121 //灯随车走传感器
  68. DeviceTypeTransformer = 122 //变压器
  69. )
  70. var mLocation *time.Location
  71. func init() {
  72. loc, err := time.LoadLocation("Asia/Shanghai")
  73. if err != nil {
  74. mLocation = time.FixedZone("CST", 8*3600)
  75. } else {
  76. mLocation = loc
  77. }
  78. }
  79. func GetDeviceObject(id int, name string) string {
  80. return strconv.Itoa(id) + "(" + name + ")"
  81. }
  82. func StringToInt(id string) int {
  83. if id != "" {
  84. id, err := strconv.Atoi(id)
  85. if err == nil {
  86. return id
  87. }
  88. }
  89. return -1
  90. }
  91. func RandomString(n int) string {
  92. var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
  93. rand.Seed(time.Now().Unix())
  94. b := make([]rune, n)
  95. for i := range b {
  96. b[i] = letters[rand.Intn(len(letters))]
  97. }
  98. return string(b)
  99. }
  100. func RandomString2(n int) string {
  101. var letters = []rune("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
  102. rand.Seed(time.Now().Unix())
  103. b := make([]rune, n)
  104. for i := range b {
  105. b[i] = letters[rand.Intn(len(letters))]
  106. }
  107. return string(b)
  108. }
  109. func StringToInt64Array(str string) []int64 {
  110. tmp := strings.Split(str, ",")
  111. var result []int64
  112. for _, t := range tmp {
  113. i, _ := strconv.ParseInt(t, 10, 64)
  114. result = append(result, i)
  115. }
  116. return result
  117. }
  118. func StringToIntArray(str string) []int {
  119. tmp := strings.Split(str, ",")
  120. var result []int
  121. for _, t := range tmp {
  122. i, _ := strconv.Atoi(t)
  123. result = append(result, i)
  124. }
  125. return result
  126. }
  127. func MlParseTime(strTime string) (time.Time, error) {
  128. if strings.Contains(strTime, ".") {
  129. return time.ParseInLocation("2006-01-02 15:04:05.000", strTime, mLocation)
  130. }
  131. return time.ParseInLocation("2006-01-02 15:04:05", strTime, mLocation)
  132. }
  133. func IsAdmin(roleId int64) bool {
  134. return roleId == 1
  135. }