| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // ExpenseCell.h
- // IBOSS
- //
- // Created by apple on 2017/7/10.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:费用明细表单元格
- //
- #import <UIKit/UIKit.h>
- @interface ExpenseCell : UITableViewCell
- /**
- id
- */
- @property (nonatomic,assign) NSString *feeID;
- /**
- 费用方向
- */
- @property (nonatomic, strong) UILabel *lblValueFeeDirection;
- /**
- 费用项目
- */
- @property (nonatomic, strong) UILabel *lblValueFeeItem;
- /**
- 费用金额
- */
- @property (nonatomic, strong) UILabel *lblValueFeeSum;
- /**
- 费用金额
- */
- @property (nonatomic, strong) UILabel *lblValuePaySum;
- /**
- 业务员
- */
- @property (nonatomic, strong) UILabel *lblValueStaff;
- /**
- 业务部门
- */
- @property (nonatomic, strong) UILabel *lblValueOrg;
- @end
|