酷店

KDPAccountListCell.h 576B

1234567891011121314151617181920212223
  1. //
  2. // KDPAccountList.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 "KDPBalanceModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KDPAccountListCell : UITableViewCell
  12. @property(nonatomic,strong)UIImageView *iconImgV;
  13. @property(nonatomic,strong)UILabel *titleLabel;
  14. @property(nonatomic,strong)UILabel *timeLabel;
  15. @property(nonatomic,strong)UILabel *moneyLabel;
  16. @property(nonatomic,strong)UILabel *tipeLabel;
  17. @property(nonatomic,strong)KDPBalanceModel *model;
  18. @end
  19. NS_ASSUME_NONNULL_END