1234567891011121314151617181920212223242526272829303132 |
- //
- // RQErrorAndCollectItemViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/8/5.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQErrorAndCollectItemViewModel.h"
- @interface RQErrorAndCollectItemViewModel ()
- @property (nonatomic, readwrite, copy) NSString *numStr;
- @property (nonatomic, readwrite, copy) NSString *titleStr;
- @property (nonatomic, readwrite, copy) NSString *countStr;
- @end
- @implementation RQErrorAndCollectItemViewModel
- /// init
- - (instancetype)initWithNumStr:(NSString *)numStr titleStr:(NSString *)titleStr countStr:(NSString *)countStr {
- if (self = [super init]) {
- self.rowHeight = RQ_FIT_HORIZONTAL(54.f);
- self.numStr = numStr;
- self.titleStr = titleStr;
- self.countStr = countStr;
- }
- return self;
- }
- - (NSString *)itemClassName {
- return @"RQErrorAndCollectCell";
- }
- @end
|