DailyReconciliationViewController.h 425 B

1234567891011121314151617181920
  1. //
  2. // DailyReconciliationViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/4.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface DailyReconciliationViewController : BaseViewController
  10. /**
  11. 收款总额
  12. */
  13. @property (nonatomic, strong) UILabel *lbTotalReceiptValue;
  14. /**
  15. 货款总额
  16. */
  17. @property (nonatomic, strong) UILabel *lbTotalReceivableValue;
  18. @end