CustomerBalanceCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. //
  2. // CustomerBalanceCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/24.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CustomerBalanceCell : UITableViewCell
  10. /**
  11. id
  12. */
  13. @property(nonatomic,assign) NSString *ID;
  14. /**
  15. 客户名称
  16. */
  17. @property (nonatomic, strong) UILabel *lblValueCustomerName;
  18. /**
  19. 时间
  20. */
  21. @property (nonatomic, strong) UILabel *createTime;
  22. /**
  23. 业务员
  24. */
  25. @property (nonatomic, strong) UILabel *lblValueStaff;
  26. /**
  27. 业务部门
  28. */
  29. @property (nonatomic, strong) UILabel *lblValueOrg;
  30. /**
  31. 应收-预存-定金
  32. */
  33. @property (nonatomic, strong) UILabel *lblReceivableAndDepositAndEarnest;
  34. /**
  35. 应收
  36. */
  37. @property (nonatomic, strong) UILabel *lblValueReceivable;
  38. /**
  39. 预存
  40. */
  41. @property (nonatomic, strong) UILabel *lblValueDeposit;
  42. /**
  43. 定金
  44. */
  45. @property (nonatomic, strong) UILabel *lblValueEarnest;
  46. /**
  47. 底部控件,和高度有关
  48. */
  49. @property (nonatomic, strong) UIView *vBottom;
  50. /**
  51. * 模型
  52. */
  53. - (void) initUI: (NSDictionary *)dic;
  54. /**
  55. 高度
  56. */
  57. @property (nonatomic, assign) CGFloat height;
  58. @end