123456789101112131415161718192021222324 |
- //
- // KDPTodayListCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPTodayListCell : UITableViewCell
- @property(nonatomic,strong)UILabel *todayTitleL;
- @property(nonatomic,strong)UILabel *oldPriceL;
- @property(nonatomic,strong)UILabel *livePriceL;
- @property(nonatomic,strong)UILabel *timeLabel;
- @property(nonatomic,strong)UIImageView *todayGoodImgV;
- @property(nonatomic,strong)UILabel *numL;
- @property(nonatomic,strong)KDPGoodsModel *model;
- @end
- NS_ASSUME_NONNULL_END
|