// // NotuceRecordCell.h // XFFruit // // Created by mac on 15/9/16. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h>
#import "NoticeRecord.h"
@interface NotuceRecordCell : UITableViewCell @property (nonatomic,strong)UILabel *uuidLable;//唯一标识 @property (nonatomic,strong)UILabel *traceIdLable;//采购通知单uuid @property (nonatomic,strong)UILabel *typeLable;//业务类型 @property (nonatomic,strong)UILabel *creatorLable;//业务人 @property (nonatomic,strong)UILabel *createdLable;//业务时间 @property (nonatomic,strong)UILabel *remarkLable;//日志描述信息
@property (nonatomic,strong)NoticeRecord *noticeRecode;
- (void)setNoticeRecode:(NoticeRecord *)noticeRecode withNumber:(NSString *)number;
@end