123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // lastFileModel.m
- // 双子星云手机
- //
- // Created by xd h on 2024/7/8.
- //
- #import "lastFileModel.h"
- @implementation lastFileModel
- #pragma mark - get lastFile info
- //
- - (NSDictionary *)lastFileInfoFun{
-
- if(self.localPath){
- return @{
- @"path" : self.path,
- @"name" : self.name,
- @"time" : self.time,
- @"type" : self.type,
- @"size" : @(self.size),
- @"duration" : @(self.duration),
- //@"isSelectType" : @(self.isSelectType),
- @"lastPreTime" : @(self.lastPreTime),
- @"isDownDoneType" : @(self.isDownDoneType),
- @"localPath" : self.localPath,
- };
- }
-
- return @{
- @"path" : self.path,
- @"name" : self.name,
- @"time" : self.time,
- @"type" : self.type,
- @"size" : @(self.size),
- @"duration" : @(self.duration),
- //@"isSelectType" : @(self.isSelectType),
- @"lastPreTime" : @(self.lastPreTime),
- @"isDownDoneType" : @(self.isDownDoneType),
- //@"localPath" : self.localPath,
- };
- }
- @end
|