| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // FileModel.h
- // zhuxun
- //
- // Created by winsoft on 16/7/19.
- //
- //
- #import <Foundation/Foundation.h>
- typedef enum {
- BriefFileTypeOther = 3,
- BriefFileTypePic = 2
- }BriefFileType;
- /**
- * 文件模型
- */
- @interface FileModel : NSObject
- @property (nonatomic, copy)NSString *fileName;
- /**
- * 2017-07-21 新增md5
- */
- @property (nonatomic , copy) NSString *md5;
- /**
- * 文件大小,单位byte.
- */
- @property (nonatomic, copy)NSString *fileSize;
- @property (nonatomic, copy)NSString *fileType;
- @property (nonatomic, assign)BriefFileType birefFileType;
- /**
- * xxx/yyy.zzz, set后return为完整路径
- */
- @property (nonatomic, copy)NSString *fileLocalPath;
- @property (nonatomic, copy)NSString *fileFullLocalPath;
- @property (nonatomic, copy)NSDate *fileCreateTime;
- @property (nonatomic, assign)BOOL selectStatus;
- @end
|