channel_id.dart 500 B

12345678910111213141516171819202122232425262728293031323334
  1. abstract class ChannelId {
  2. // 内推渠道
  3. static const int nt = 99;
  4. //神马
  5. static const int sm = 108;
  6. // OPPO
  7. static const int op = 107;
  8. //万年历
  9. static const int wnl = 106;
  10. //微博
  11. static const int wb = 105;
  12. //百度
  13. static const int bd = 104;
  14. //爱奇艺
  15. static const int iqy = 103;
  16. // 快手
  17. static const int ks = 102;
  18. // 头条
  19. static const int tt = 101;
  20. // 广点通
  21. static const int gdt = 100;
  22. // 商店
  23. static const int sd = 0;
  24. }