| 123456789101112131415161718192021222324252627 |
- //
- // IndustryCategoryModel.h
- // BuguLive
- //
- // Created by qitewei on 2025/8/20.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface IndustryCategoryModel : NSObject
- @property (nonatomic, assign) NSInteger categoryId;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *depositAmount;
- @property (nonatomic, strong) NSString *commissionRate;
- @property (nonatomic, assign) NSTimeInterval createTime;
- @property (nonatomic, strong) NSString *createTimeText;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- + (NSArray<IndustryCategoryModel *> *)modelsFromArray:(NSArray *)array;
- @end
- NS_ASSUME_NONNULL_END
|