HomeAlbumModel.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // HomeAlbumModel.h
  3. //
  4. // Created by Steven on 2022/4/24
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface HomeAlbumModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
  10. @property (nonatomic, assign) NSInteger albumFavoriteCount;
  11. @property (nonatomic, strong) NSString *topFlag;
  12. @property (nonatomic, strong) NSString *musicTagNames;
  13. @property (nonatomic, strong) NSString *updateBy;
  14. @property (nonatomic, strong) NSString *albumCoverUrl;
  15. @property (nonatomic, strong) NSString *albumTag;
  16. @property (nonatomic, assign) NSInteger musicSheetCount;
  17. @property (nonatomic, assign) NSInteger albumStatus;
  18. @property (nonatomic, strong) NSString *albumDesc;
  19. @property (nonatomic, strong) NSString *createBy;
  20. @property (nonatomic, strong) NSString *createTime;
  21. @property (nonatomic, strong) NSString *hotFlag;
  22. @property (nonatomic, assign) NSInteger sortNumber;
  23. @property (nonatomic, strong) NSString *albumName;
  24. @property (nonatomic, strong) NSString *updateTime;
  25. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  26. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  27. - (NSDictionary *)dictionaryRepresentation;
  28. @end