equipment_info_entity.dart 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import 'package:deus_app/generated/json/base/json_convert_content.dart';
  2. class EquipmentInfoEntity with JsonConvert<EquipmentInfoEntity> {
  3. late int code;
  4. late EquipmentInfoData data;
  5. late String msg;
  6. }
  7. class EquipmentInfoData with JsonConvert<EquipmentInfoData> {
  8. late int id;
  9. late String name;
  10. late String showName;
  11. late String deviceKey;
  12. late int authType;
  13. late int isEnable;
  14. late int isActive;
  15. late String deviceSecret;
  16. late String deviceId;
  17. late String productName;
  18. late String productKey;
  19. late int productId;
  20. late int status;
  21. late int nodeType;
  22. late int connectionProtocol;
  23. late String ip;
  24. late dynamic lastUpdateOn;
  25. late String activationOn='';
  26. late dynamic positionId;
  27. late dynamic number;
  28. late String speedA;
  29. late String speedB;
  30. late String finenessA;
  31. late String finenessB;
  32. late String holeCountA;
  33. late String holeCountB;
  34. late dynamic activePeriod;
  35. late String createdOn;
  36. late String lastOnlineOn='';
  37. late String iotId;
  38. late dynamic description;
  39. late String customerId;
  40. late String channelId;
  41. late dynamic imei;
  42. }