ReceiveBoltView.h 910 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12
//
//  ReceiveBoltView.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/10/13.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol ReceiveBoltViewDelegate <NSObject>
- (void)getBoltValueSelectRow:(NSString *)state;
13 14 15
- (void)getBillNumberEqual:(NSString *)billNumber;
- (void)getGoodLike:(NSString *)goodLike;

陈俊俊's avatar
陈俊俊 committed
16 17 18 19 20 21 22 23 24
- (void)clearBoltInformation;
@end


@interface ReceiveBoltView : UIView<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic,strong)UITableView *tableView;
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,weak)id <ReceiveBoltViewDelegate>delegate;

25 26 27 28
@property (nonatomic,strong)UITextField *billFiled;//单号等于
@property (nonatomic,strong)UITextField *goodFiled;//商品类似于

- (instancetype)initWithFrame:(CGRect)frame state:(NSString *)state billNumber:(NSString *)billNumber goodLike:(NSString *)goodLike;
陈俊俊's avatar
陈俊俊 committed
29
@end