TypeViewCell.h 902 B

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