// // RADetailBaseModel.h // Apex And Drivers // // Created by Jack on 2018/6/2. // Copyright © 2018年 USAI. All rights reserved. // #import typedef enum { RAOrderDetailValueTypeSingleLine = 0, RAOrderDetailValueTypeMultipleLine = 1, RAOrderDetailValueTypeAction = 2, RAOrderDetailValueTypeLocation = 3, RAOrderDetailValueTypeMap = 4, RAOrderDetailValueTypePhoto = 5, RAOrderDetailValueTypeSignature = 6, RAOrderDetailValueTypeMultiplePhoto = 7 } RAOrderDetailValueType; @interface RADetailBaseModel : NSObject @property (nonatomic,assign) RAOrderDetailValueType type; @property (nonatomic,assign) CGFloat width; ///< tableView Width, if smaller than 0 then use screen width @property (nonatomic,readonly,assign) CGFloat height; @property (nonatomic,assign) BOOL highlight; @property (nonatomic,assign) BOOL detectTel;///<检测电话号码 @end