| 123456789101112131415161718192021222324252627 |
- //
- // SellOrderPublicView.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/2/19.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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
|