| 1234567891011121314151617181920 |
- //
- // BusinesswaterDetailCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/28.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BusinesswaterModel.h"
- @interface BusinesswaterDetailCell : UITableViewCell
- @property(copy,nonatomic)UILabel *title;//标题
- @property(copy,nonatomic)UILabel *time;//时间
- @property(copy,nonatomic)UILabel *state;//状态
- @property(copy,nonatomic)UILabel *ordernumber;//订单编号
- @property(copy,nonatomic)UILabel *businessDesc;//业务
- - (void)assignment:(BusinesswaterModel*)model;
- @end
|