123456789101112131415161718192021222324 |
- //
- // KDPLiveEarningCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/4.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPLiveEarningCell : UICollectionViewCell
- @property(nonatomic,strong)UILabel *orderNumgL;//订单数量
- @property(nonatomic,strong)UILabel *Forecastlabel;//预估收益
- @property(nonatomic,strong)NSString *rebet_money;
- @property(nonatomic,strong)UIImageView *backImgV;
- @property(nonatomic,strong)UILabel *addNumL;
- @property(nonatomic,copy)void(^liveDataBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|