RQCommonGroupModel.h 951 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // RQCommonGroupModel.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/6/22.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQBaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQCommonGroupModel : RQBaseModel
  11. /// 组头
  12. @property (nonatomic, copy) NSString *header;
  13. /// headerHeight defalult is .001
  14. @property (nonatomic, readwrite, assign) CGFloat headerHeight;
  15. @property (nonatomic, readwrite, strong) UIFont *headerFont;
  16. @property (nonatomic, readwrite, strong) UIColor *headerLabelColor;
  17. @property (nonatomic, readwrite, strong) UIColor *headerBgColor;
  18. /// 组尾
  19. @property (nonatomic, copy) NSString *footer;
  20. /// footerHeight defalult is .001
  21. @property (nonatomic, readwrite, assign) CGFloat footerHeight;
  22. @property (nonatomic, readwrite, strong) UIFont *footerFont;
  23. @property (nonatomic, readwrite, strong) UIColor *footerLabelColor;
  24. @property (nonatomic, readwrite, strong) UIColor *footerBgColor;
  25. @end
  26. NS_ASSUME_NONNULL_END