// // FormFieldsModel.h // smartRhino // // Created by tederen on 2019/11/19. // Copyright © 2019 tederen. All rights reserved. // #import "BaseModel.h" #import "SelectImageModel.h" NS_ASSUME_NONNULL_BEGIN @protocol FormFieldsModel @end @interface FormFieldsModel : BaseModel #pragma mark - 数据视图model @property (nonatomic ,strong) NSString *Label; @property (nonatomic ,strong) NSString *Type; @property (nonatomic ,assign) NSInteger Sort; @property (nonatomic ,assign) NSInteger Id; @property (nonatomic ,strong) NSString *Unit; @property (nonatomic ,strong) NSString *Placeholder; @property (nonatomic ,strong) NSArray *Options; @property (nonatomic ,assign) NSInteger Required; #pragma mark - 数据填充model @property (nonatomic, strong) NSString *paramString; @property (nonatomic, strong) NSMutableArray *paraImage; #pragma mark - 数据详情model @property (nonatomic, strong) NSString *Value; - (CGFloat)getCellHeight; @end NS_ASSUME_NONNULL_END