Report_Statistic_Device_Mod.cs 732 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CommLib.BdPush
  7. {
  8. /// <summary>
  9. /// 作者:冼树华
  10. /// QQ:56472465
  11. /// 日期:20150-04-29
  12. /// 功能:统计APP 设备数
  13. /// </summary>
  14. public class Report_Statistic_Device_Mod : Baidu_Mod
  15. {
  16. #region 属性
  17. #endregion
  18. #region 构造函数
  19. public Report_Statistic_Device_Mod(string apikey)
  20. {
  21. this.apikey = apikey;
  22. this.timestamp = Tool.getDefauleTimestamp(); //默认使用当前时间戳
  23. this.device_type = 3; //安卓
  24. }
  25. #endregion
  26. }
  27. }