| 1234567891011121314151617181920212223242526 |
- //
- // StoreInfoView.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/3.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CommodityDetailModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface StoreInfoView : UIView
- {
- UILabel *numsLb;
- UILabel *qualityLb;
- UILabel *serviceLb;
- UILabel *expressLb;
- }
- @property (nonatomic, strong)CommodityDetailModel *storeModels;
- @end
- NS_ASSUME_NONNULL_END
|