万佳安设备数据
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

23 lines
623B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TelpoPush.WanJiaAn.Worker.Models.PushTemplates;
  7. namespace TelpoPush.WanJiaAn.Worker.Models.MqTemplates
  8. {
  9. public class BaseModel
  10. {
  11. public string msg_id { get; set; }
  12. public string device_id { get; set; }
  13. public string type { get; set; }
  14. public string device_type { get; set; }
  15. public string event_time { get; set; }
  16. public int app_id { get; set; }
  17. public string user_id { get; set; }
  18. public object data { get; set; }
  19. }
  20. }