123456789101112131415161718192021222324252627282930313233 |
- //
- // RQCommonGroupModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/6/22.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQBaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQCommonGroupModel : RQBaseModel
- /// 组头
- @property (nonatomic, copy) NSString *header;
- /// headerHeight defalult is .001
- @property (nonatomic, readwrite, assign) CGFloat headerHeight;
- @property (nonatomic, readwrite, strong) UIFont *headerFont;
- @property (nonatomic, readwrite, strong) UIColor *headerLabelColor;
- @property (nonatomic, readwrite, strong) UIColor *headerBgColor;
- /// 组尾
- @property (nonatomic, copy) NSString *footer;
- /// footerHeight defalult is .001
- @property (nonatomic, readwrite, assign) CGFloat footerHeight;
- @property (nonatomic, readwrite, strong) UIFont *footerFont;
- @property (nonatomic, readwrite, strong) UIColor *footerLabelColor;
- @property (nonatomic, readwrite, strong) UIColor *footerBgColor;
- @end
- NS_ASSUME_NONNULL_END
|