PayTypeDelegate.h 413 B

1234567891011121314151617181920
  1. //
  2. // PayTypeDetegate.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 16/1/20.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:收款方式代理
  9. #import <Foundation/Foundation.h>
  10. #import "PayTypeModel.h"
  11. @protocol PayTypeDelegate <NSObject>
  12. /**
  13. 设置收款方式
  14. @param model <#model description#>
  15. */
  16. - (void)setPayTypeModel:(PayTypeModel *) model;
  17. @end