RADetailBaseModel.h 758 B

1234567891011121314151617181920212223242526272829
  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. RAOrderDetailValueTypeMap = 4,
  15. RAOrderDetailValueTypePhoto = 5,
  16. RAOrderDetailValueTypeSignature = 6
  17. } RAOrderDetailValueType;
  18. @interface RADetailBaseModel : NSObject
  19. @property (nonatomic,assign) RAOrderDetailValueType type;
  20. @property (nonatomic,assign) CGFloat width; ///< tableView Width, if smaller than 0 then use screen width
  21. @property (nonatomic,readonly,assign) CGFloat height;
  22. @end