SettlementTypeProtocol.h 547 B

123456789101112131415161718192021222324252627
  1. //
  2. // SettlementTypeProtocl.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:收款方式代理
  9. #import <Foundation/Foundation.h>
  10. @class SettlementTypeModel;
  11. @protocol SettlementTypeProtocol <NSObject>
  12. @optional
  13. /**
  14. 出示收款方式明细
  15. @param index <#index description#>
  16. */
  17. - (void)showDetail:(int)index;
  18. /**
  19. 出示收款方式
  20. @param model <#model description#>
  21. */
  22. - (void)showProtocolValue:(SettlementTypeModel*)model;
  23. @end