123456789101112131415161718192021222324 |
- //
- // KDPHistoryListCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KDPGoodsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPHistoryListCell : UITableViewCell
- @property(nonatomic,strong)UIImageView *goodImgV;
- @property(nonatomic,strong)UILabel *goodTitleL;
- @property(nonatomic,strong)UILabel *priceLabel;
- @property(nonatomic,strong)KDPGoodsModel *model;
- @property(nonatomic,strong)UIButton *deleteButton;
- @property(nonatomic,copy)void(^deleteBlock)(KDPGoodsModel *deleteModel);
- @end
- NS_ASSUME_NONNULL_END
|