SettlementTypeCell.h 905 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // SettlementTypeCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/14.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:收款方式单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "SettlementTypeModel.h"
  11. @interface SettlementTypeCell : UITableViewCell
  12. /**
  13. 收款方式id
  14. */
  15. @property (assign) NSString *settlementId;
  16. /**
  17. 收款名称
  18. */
  19. @property (strong,nonatomic) IBOutlet UILabel *receivableName;
  20. /**
  21. 收款金额
  22. */
  23. @property (strong,nonatomic) IBOutlet UILabel *receivables;
  24. /**
  25. 是否手工费
  26. */
  27. @property (strong,nonatomic) IBOutlet UILabel *isNotHand;
  28. /**
  29. 手工费
  30. */
  31. @property (strong,nonatomic) IBOutlet UILabel *handAmount;
  32. /**
  33. 备注
  34. */
  35. @property (strong,nonatomic) IBOutlet UILabel *remark;
  36. /**
  37. 解析收款方式
  38. @param model <#model description#>
  39. */
  40. - (void)parseInfoModel:(SettlementTypeModel*)model;
  41. @end