channel.go 365 B

12345678910111213141516171819202122
  1. package consts
  2. const (
  3. ChannelPlatformWx = 1
  4. ChannelPlatformH5 = 2
  5. ChannelPlatformApp = 3
  6. ChannelPlatformTT = 4
  7. )
  8. const (
  9. ChannelTypeMaster = 0 // 主渠道
  10. ChannelTypeWx = 1 // 微信
  11. ChannelTypeTT = 2 // 抖音
  12. )
  13. const (
  14. ChannelIdNone = ""
  15. ChannelIdDefault = "0"
  16. ChannelIdAllAdv = "1"
  17. ChannelIdAllWx = "2"
  18. ChannelIdAllTT = "3"
  19. )