| 123456789101112131415161718192021222324252627 |
- //
- // SettlementTypeProtocl.h
- // IBOSS
- //
- // Created by apple on 16/1/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:收款方式代理
- #import <Foundation/Foundation.h>
- @class SettlementTypeModel;
- @protocol SettlementTypeProtocol <NSObject>
- @optional
- /**
- 出示收款方式明细
- @param index <#index description#>
- */
- - (void)showDetail:(int)index;
- /**
- 出示收款方式
- @param model <#model description#>
- */
- - (void)showProtocolValue:(SettlementTypeModel*)model;
- @end
|