RADetailBaseModel.h 635 B

123456789101112131415161718192021222324
  1. //
  2. // RADetailBaseModel.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/2.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum {
  10. RAOrderDetailValueTypeSingleLine = 0,
  11. RAOrderDetailValueTypeMultipleLine = 1,
  12. RAOrderDetailValueTypeAction = 2,
  13. RAOrderDetailValueTypeLocation = 3
  14. } RAOrderDetailValueType;
  15. @interface RADetailBaseModel : NSObject
  16. @property (nonatomic,assign) RAOrderDetailValueType type;
  17. @property (nonatomic,assign) CGFloat width; ///< tableView Width, if smaller than 0 then use screen width
  18. @property (nonatomic,readonly,assign) CGFloat height;
  19. @end