123456789101112131415161718192021222324 |
- //
- // YMFeesSettingCellViewModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/23.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMFeesSettingCellViewModel.h"
- @interface YMFeesSettingCellViewModel ()
- /// 收费设置功能类型
- @property (nonatomic, assign, readwrite) YMFeesSettingFunctionsType feesSettingFunctionsType;
- @end
- @implementation YMFeesSettingCellViewModel
- - (void)ym_initialize{
- [super ym_initialize];
- NSDictionary *dic = [self.params dictionaryValueForKey:ParamsModel defaultValue:@{}];
- self.feesSettingTitle = [dic stringValueForKey:@"title" defaultValue:@""];
- self.feesSettingContent = [dic stringValueForKey:@"content" defaultValue:@""];
- self.feesSettingFunctionsType = [dic integerValueForKey:ParamsCategoryType defaultValue:YMFeesSettingFunctionsTypeMessagePrice];
- }
- @end
|