| 123456789101112131415161718 |
- //
- // OrdercontentCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/24.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderdetailModel.h"
- @interface OrdercontentCell : UITableViewCell
- @property(copy,nonatomic)UIView *view;//
- @property(copy,nonatomic)UILabel *content;//内容
- - (void)assignment:(OrderdetailModel*)model;
- @end
|