12345678910111213141516171819202122 |
- package consts
- const (
- ChannelPlatformWx = 1
- ChannelPlatformH5 = 2
- ChannelPlatformApp = 3
- ChannelPlatformTT = 4
- )
- const (
- ChannelTypeMaster = 0 // 主渠道
- ChannelTypeWx = 1 // 微信
- ChannelTypeTT = 2 // 抖音
- )
- const (
- ChannelIdNone = ""
- ChannelIdDefault = "0"
- ChannelIdAllAdv = "1"
- ChannelIdAllWx = "2"
- ChannelIdAllTT = "3"
- )
|