CustomerCurrentListCell.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // CustomerCurrentListCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2021/2/25.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomerCurrentSummaryListModel.h"
  10. @interface CustomerCurrentListCell : UITableViewCell
  11. @property(nonatomic,strong)UILabel *lblCustomerName;
  12. @property(nonatomic,strong)UILabel *lblAddress;
  13. @property(nonatomic,strong)UILabel *lblCustomerCode;
  14. @property(nonatomic,strong)UILabel *lblTelephone;
  15. @property(nonatomic,strong) UILabel *lblLastDepositReceived;
  16. @property(nonatomic,strong) UILabel *lblNextDepositReceived;
  17. @property(nonatomic,strong)UILabel *lblLastAccountReceivable;
  18. @property(nonatomic,strong)UILabel *lblSalesAmount;
  19. @property(nonatomic,strong)UILabel *lblRefundAmount;
  20. @property(nonatomic,strong)UILabel *lblAdjustAmount;
  21. //核销额
  22. @property(nonatomic,strong) UILabel *lblVerificationSum;
  23. //期末应收
  24. @property(nonatomic,strong) UILabel *lblNextAccountReceivable ;
  25. @property(nonatomic,strong) UILabel *lblBalanceAmount ;
  26. @property(nonatomic,strong) UILabel *lblDepositReceivedEarnest ;
  27. @property(nonatomic,assign) CGFloat cellHeight;
  28. @property(nonatomic,strong) UIView *bottomSeparator;
  29. -(void) setCustomerCurrentListCell:(CustomerCurrentSummaryListModel*)currentSummaryListModel advanceFlag:(NSString*)advanceFlag;
  30. @end