Report_Query_Msg_Status_Mod.cs 930 B

1234567891011121314151617181920212223242526272829303132
  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. /// 功能:根据msg_id获取消息推送报告
  13. /// </summary>
  14. public class Report_Query_Msg_Status_Mod : Baidu_Mod
  15. {
  16. #region 属性
  17. public string msg_id {get;set;} //string 是 推送接口返回的msg_id,支持一个由msg_id组成的json数组 消息ID
  18. #endregion
  19. #region 构造函数
  20. public Report_Query_Msg_Status_Mod(string apikey, string msg_id)
  21. {
  22. this.apikey = apikey;
  23. this.msg_id = msg_id;
  24. this.timestamp = Tool.getDefauleTimestamp(); //默认使用当前时间戳
  25. this.device_type = 3; //安卓
  26. }
  27. #endregion
  28. }
  29. }