123456789101112131415161718192021 |
- //
- // KDPShopView.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 KDPShopView : UIView
- @property(nonatomic,strong)UIImageView *shopimgV;
- @property(nonatomic,strong)UILabel *shopLabel;
- @property(nonatomic,strong)UILabel *desclabel;
- @property(nonatomic,strong)NSDictionary *shopDic;
- @end
- NS_ASSUME_NONNULL_END
|