| 12345678910111213141516171819202122232425262728293031 |
- //
- // ResponsiblePersonViewController.h
- // IBOSS
- //
- // Created by apple on 2017/5/27.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:责任人控制器
- //
- #import "BaseViewController.h"
- #import "ResponsiblePersonModel.h"
- #import "ResponsiblePersonProtocol.h"
- @interface ResponsiblePersonViewController : BaseViewController
- /**
- 查询数据
- */
- @property (nonatomic,strong) NSMutableArray *arrSearch;
- /**
- 从查询数据过滤数据
- */
- @property (nonatomic,strong) NSMutableArray *arrFilter;
- /**
- 代理
- */
- @property (nonatomic,weak) id<ResponsiblePersonProtocol> respDelegate;
- @end
|