constants.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package utils
  2. //常量定义
  3. const (
  4. FormatTime = "15:04:05" //时间格式
  5. FormatDate = "2006-01-02" //日期格式
  6. FormatDateCN = "2006年01月02日" //日期格式(中文)
  7. FormatDateUnSpace = "20060102" //日期格式
  8. FormatDateTime = "2006-01-02 15:04:05" //完整时间格式
  9. HlbFormatDateTime = "2006-01-02_15:04:05.999" //完整时间格式
  10. FormatDateTimeUnSpace = "20060102150405" //完整时间格式
  11. PageSize15 = 15 //列表页每页数据量
  12. PageSize5 = 5
  13. PageSize10 = 10
  14. PageSize20 = 20
  15. PageSize30 = 30
  16. )
  17. //手机号,电子邮箱正则
  18. const (
  19. RegularMobile = "^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0-9])|(17[0-9])|(16[0-9])|(19[0-9]))\\d{8}$" //手机号码
  20. RegularEmail = `\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*` //匹配电子邮箱
  21. )
  22. const (
  23. APPNAME = "弘则研报"
  24. //EmailSendToUsers = "glji@hzinsights.com;pyan@hzinsights.com;cxzhang@hzinsights.com"
  25. EmailSendToUsers = "pyan@hzinsights.com"
  26. )
  27. //聚合短信
  28. var (
  29. JhGnTplId = "65692" //聚合国内模板编码
  30. JhGjTplId = "10054" //聚合国内模板编码
  31. JhGnAppKey = "4c8504c49dd335e99cfd7b6a3a9e2415" //聚合国内AppKey
  32. JhGjAppKey = "3326ad2c1047a4cd92ace153e6044ca3"
  33. )