SellOrderPublicView.h 747 B

123456789101112131415161718192021222324252627
  1. //
  2. // SellOrderPublicView.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/19.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SellOrderDetailModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SellOrderPublicView : UIView
  12. @property (nonatomic, strong)UIImageView *orderImg;
  13. @property (nonatomic, strong)UILabel *shopTitleLb;
  14. @property (nonatomic, strong)UILabel *orderTitleLb;
  15. @property (nonatomic, strong)UILabel *orderContentLb;
  16. @property (nonatomic, strong)UILabel *orderPriceLb;
  17. @property (nonatomic, strong)UILabel *orderCountLb;
  18. @property(nonatomic, strong)UILabel * freightLb;
  19. @property(nonatomic, strong)UILabel * priceLb;
  20. -(void)setOrderModel:(SellOrderDetailModel *)model;
  21. @end
  22. NS_ASSUME_NONNULL_END