| 1234567891011121314151617181920 |
- //
- // DailyReconciliationViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/4.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface DailyReconciliationViewController : BaseViewController
- /**
- 收款总额
- */
- @property (nonatomic, strong) UILabel *lbTotalReceiptValue;
- /**
- 货款总额
- */
- @property (nonatomic, strong) UILabel *lbTotalReceivableValue;
- @end
|