ExpenseCell.h 795 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // ExpenseCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/7/10.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:费用明细表单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface ExpenseCell : UITableViewCell
  12. /**
  13. id
  14. */
  15. @property (nonatomic,assign) NSString *feeID;
  16. /**
  17. 费用方向
  18. */
  19. @property (nonatomic, strong) UILabel *lblValueFeeDirection;
  20. /**
  21. 费用项目
  22. */
  23. @property (nonatomic, strong) UILabel *lblValueFeeItem;
  24. /**
  25. 费用金额
  26. */
  27. @property (nonatomic, strong) UILabel *lblValueFeeSum;
  28. /**
  29. 费用金额
  30. */
  31. @property (nonatomic, strong) UILabel *lblValuePaySum;
  32. /**
  33. 业务员
  34. */
  35. @property (nonatomic, strong) UILabel *lblValueStaff;
  36. /**
  37. 业务部门
  38. */
  39. @property (nonatomic, strong) UILabel *lblValueOrg;
  40. @end