// // GXFProcessBoltView.h // XFFruit // // Created by freecui on 15/9/7. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> @protocol GXFProcessBoltViewDelegate <NSObject> - (void)getBoltValueSelectRow:(NSString *)state; - (void)getbillLike:(NSString *)billLike; - (void)getnoticeLike:(NSString *)noticeLike; - (void)clearBoltInformation; @end @interface GXFProcessBoltView : UIView<UITableViewDataSource,UITableViewDelegate> @property (nonatomic,strong)UITableView *tableView; @property (nonatomic,strong)NSMutableArray *dataArr; @property (nonatomic,weak)id <GXFProcessBoltViewDelegate>delegate; @property (nonatomic,strong)UITextField *billFiled;//采购单号类似于 //@property (nonatomic,strong)UITextField *noticeFiled;//通知单号类似于 @property (nonatomic,strong)UITextField *vendorFiled;//供应商uuid类似于 - (instancetype)initWithFrame:(CGRect)frame state:(NSString *)state billNumber:(NSString *)billNumber noticeNumber:(NSString *)noticeNumber; @end