万佳安设备数据
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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