123456789101112131415161718192021222324 |
- //
- // KDPForecastOrderCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/8.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KDPOrderModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPForecastOrderCell : UITableViewCell
- @property(nonatomic,strong)UIImageView *goodImgV;
- @property(nonatomic,strong)UILabel *goodTitleLabel;
- @property(nonatomic,strong)UILabel *addTimeL;
- @property(nonatomic,strong)UILabel *moneyL;
- @property(nonatomic,strong)UILabel *accountLabel;
- @property(nonatomic,strong)UILabel *forecastLabel;
- @property(nonatomic,strong)KDPOrderModel *model;
- @end
- NS_ASSUME_NONNULL_END
|