123456789101112131415161718192021222324 |
- //
- // KDPForecastListCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/8.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KDPBalanceModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPForecastListCell : UITableViewCell
- @property(nonatomic,strong)UILabel *timeMonthLabel;
- @property(nonatomic,strong)UILabel *timeYearLabel;
- @property(nonatomic,strong)UILabel *numberLabel;
- @property(nonatomic,strong)UILabel *moneyLabel;
- @property(nonatomic,strong)KDPBalanceModel *model;
- @end
- NS_ASSUME_NONNULL_END
|