| 123456789101112131415161718192021222324252627282930313233 |
- //
- // DailyReconciliationCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/16.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DailyReconciliationCell : UITableViewCell
- /**
- 组织机构id
- */
- @property(nonatomic,copy) NSString *orgId;
- /**
- 组织机构
- */
- @property (nonatomic, strong) UILabel *lblOrgNameView;
- /**
- 收款总额
- */
- @property (nonatomic, strong) UILabel *lblTotalReceiptView;
- /**
- 货款总额
- */
- @property (nonatomic, strong) UILabel *lblTotalReceivableView;
- /**
- 高度
- */
- @property (nonatomic, assign) int height;
- @end
|