NotuceRecordCell.h 767 Bytes
Newer Older
zhu's avatar
zhu committed
1 2 3 4 5 6 7 8 9
//
//  NotuceRecordCell.h
//  XFFruit
//
//  Created by mac on 15/9/16.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
陈俊俊's avatar
陈俊俊 committed
10
#import "NoticeRecord.h"
zhu's avatar
zhu committed
11 12 13 14 15 16 17 18 19

@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;//日志描述信息

陈俊俊's avatar
陈俊俊 committed
20
@property (nonatomic,strong)NoticeRecord *noticeRecode;
陈俊俊's avatar
陈俊俊 committed
21
- (void)setNoticeRecode:(NoticeRecord *)noticeRecode withNumber:(NSString *)number;
zhu's avatar
zhu committed
22 23

@end