StockRefreshDataProtocol.h 366 B

1234567891011121314151617181920
  1. //
  2. // StockRefreshDataProtocol.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/18.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:盘点刷新数据协议
  9. //
  10. #import <Foundation/Foundation.h>
  11. @protocol StockRefreshDataProtocol <NSObject>
  12. @optional
  13. /**
  14. 保存后更新数据
  15. */
  16. - (void)refreshData;
  17. @end