万佳安设备数据
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

23 linhas
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. }