StockRefreshDataProtocol.h 296 B

123456789101112131415161718
  1. //
  2. // StockRefreshDataProtocol.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/18.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol StockRefreshDataProtocol <NSObject>
  10. @optional
  11. /**
  12. 保存后更新数据
  13. */
  14. - (void)refreshData;
  15. @end