| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import 'package:deus_app/generated/json/base/json_convert_content.dart';
- class EquipmentInfoEntity with JsonConvert<EquipmentInfoEntity> {
- late int code;
- late EquipmentInfoData data;
- late String msg;
- }
- class EquipmentInfoData with JsonConvert<EquipmentInfoData> {
- late int id;
- late String name;
- late String showName;
- late String deviceKey;
- late int authType;
- late int isEnable;
- late int isActive;
- late String deviceSecret;
- late String deviceId;
- late String productName;
- late String productKey;
- late int productId;
- late int status;
- late int nodeType;
- late int connectionProtocol;
- late String ip;
- late dynamic lastUpdateOn;
- late String activationOn='';
- late dynamic positionId;
- late dynamic number;
- late String speedA;
- late String speedB;
- late String finenessA;
- late String finenessB;
- late String holeCountA;
- late String holeCountB;
- late dynamic activePeriod;
- late String createdOn;
- late String lastOnlineOn='';
- late String iotId;
- late dynamic description;
- late String customerId;
- late String channelId;
- late dynamic imei;
- }
|