StoreInfoView.h 435 B

1234567891011121314151617181920212223242526
  1. //
  2. // StoreInfoView.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/3.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CommodityDetailModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface StoreInfoView : UIView
  12. {
  13. UILabel *numsLb;
  14. UILabel *qualityLb;
  15. UILabel *serviceLb;
  16. UILabel *expressLb;
  17. }
  18. @property (nonatomic, strong)CommodityDetailModel *storeModels;
  19. @end
  20. NS_ASSUME_NONNULL_END