// // SellOrderPublicView.h // yunbaolive // // Created by ybRRR on 2020/2/19. // Copyright © 2020 cat. All rights reserved. // #import #import "SellOrderDetailModel.h" NS_ASSUME_NONNULL_BEGIN @interface SellOrderPublicView : UIView @property (nonatomic, strong)UIImageView *orderImg; @property (nonatomic, strong)UILabel *shopTitleLb; @property (nonatomic, strong)UILabel *orderTitleLb; @property (nonatomic, strong)UILabel *orderContentLb; @property (nonatomic, strong)UILabel *orderPriceLb; @property (nonatomic, strong)UILabel *orderCountLb; @property(nonatomic, strong)UILabel * freightLb; @property(nonatomic, strong)UILabel * priceLb; -(void)setOrderModel:(SellOrderDetailModel *)model; @end NS_ASSUME_NONNULL_END