| 1234567891011121314151617181920 |
- //
- // StockRefreshDataProtocol.h
- // IBOSS
- //
- // Created by apple on 2017/5/18.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:盘点刷新数据协议
- //
- #import <Foundation/Foundation.h>
- @protocol StockRefreshDataProtocol <NSObject>
- @optional
- /**
- 保存后更新数据
- */
- - (void)refreshData;
- @end
|