couldPhoneFileListModel.m 677 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // couldPhoneFileListModel.m
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2024/1/8.
  6. //
  7. #import "couldPhoneFileListModel.h"
  8. @implementation couldPhoneFileModel
  9. - (NSString*)getFileNameFun
  10. {
  11. return [[NSString alloc] initWithFormat:@"%ld_%@",self.length,self.name];
  12. }
  13. /**
  14. 设置不需要存储的属性, 在模型.m文件中实现该函数.
  15. */
  16. +(NSArray *)bg_ignoreKeys{
  17. return @[@"preTimeInterval",@"curTimeInterval",@"isSelectType"];
  18. }
  19. @end
  20. @implementation couldPhoneFileArrModel
  21. /**
  22. 设置不需要存储的属性, 在模型.m文件中实现该函数.
  23. */
  24. +(NSArray *)bg_ignoreKeys{
  25. return @[@"list"];
  26. }
  27. @end
  28. @implementation couldPhoneFileListModel
  29. @end