| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //
- // CustomerBalanceCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/24.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CustomerBalanceCell : UITableViewCell
- /**
- id
- */
- @property(nonatomic,assign) NSString *ID;
- /**
- 客户名称
- */
- @property (nonatomic, strong) UILabel *lblValueCustomerName;
- /**
- 时间
- */
- @property (nonatomic, strong) UILabel *createTime;
- /**
- 业务员
- */
- @property (nonatomic, strong) UILabel *lblValueStaff;
- /**
- 业务部门
- */
- @property (nonatomic, strong) UILabel *lblValueOrg;
- /**
- 应收-预存-定金
- */
- @property (nonatomic, strong) UILabel *lblReceivableAndDepositAndEarnest;
- /**
- 应收
- */
- @property (nonatomic, strong) UILabel *lblValueReceivable;
- /**
- 预存
- */
- @property (nonatomic, strong) UILabel *lblValueDeposit;
- /**
- 定金
- */
- @property (nonatomic, strong) UILabel *lblValueEarnest;
- /**
- 底部控件,和高度有关
- */
- @property (nonatomic, strong) UIView *vBottom;
- /**
- * 模型
- */
- - (void) initUI: (NSDictionary *)dic;
- /**
- 高度
- */
- @property (nonatomic, assign) CGFloat height;
- @end
|