DailyReconciliationCell.h 599 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // DailyReconciliationCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/16.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DailyReconciliationCell : UITableViewCell
  10. /**
  11. 组织机构id
  12. */
  13. @property(nonatomic,copy) NSString *orgId;
  14. /**
  15. 组织机构
  16. */
  17. @property (nonatomic, strong) UILabel *lblOrgNameView;
  18. /**
  19. 收款总额
  20. */
  21. @property (nonatomic, strong) UILabel *lblTotalReceiptView;
  22. /**
  23. 货款总额
  24. */
  25. @property (nonatomic, strong) UILabel *lblTotalReceivableView;
  26. /**
  27. 高度
  28. */
  29. @property (nonatomic, assign) int height;
  30. @end