酷店

KDPForecastOrderCell.h 633B

123456789101112131415161718192021222324
  1. //
  2. // KDPForecastOrderCell.h
  3. // KuDianProject
  4. //
  5. // Created by 学丽 on 2019/7/8.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KDPOrderModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KDPForecastOrderCell : UITableViewCell
  12. @property(nonatomic,strong)UIImageView *goodImgV;
  13. @property(nonatomic,strong)UILabel *goodTitleLabel;
  14. @property(nonatomic,strong)UILabel *addTimeL;
  15. @property(nonatomic,strong)UILabel *moneyL;
  16. @property(nonatomic,strong)UILabel *accountLabel;
  17. @property(nonatomic,strong)UILabel *forecastLabel;
  18. @property(nonatomic,strong)KDPOrderModel *model;
  19. @end
  20. NS_ASSUME_NONNULL_END