| 1234567891011121314151617181920212223242526272829 |
- //
- // RADetailBaseModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef enum {
-
- RAOrderDetailValueTypeSingleLine = 0,
- RAOrderDetailValueTypeMultipleLine = 1,
- RAOrderDetailValueTypeAction = 2,
- RAOrderDetailValueTypeLocation = 3,
- RAOrderDetailValueTypeMap = 4,
- RAOrderDetailValueTypePhoto = 5,
- RAOrderDetailValueTypeSignature = 6
-
- } 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;
- @end
|