12345678910111213141516171819202122 |
- //
- // YXMyDeviceModel.m
- // Temperature
- //
- // Created by TC on 2025/3/22.
- //
- #import "YXMyDeviceModel.h"
- @implementation YXMyDeviceModel
- + (NSDictionary *)objectClassInArray
- {
- return @{ @"consumables": @"YXConsumablesModel"};
- }
- @end
- @implementation YXConsumablesModel
- @end
|