SingleProfitCell.h 764 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // SingleProfitCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/18.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SingleProfitCell : UITableViewCell
  10. /**
  11. id
  12. */
  13. @property(nonatomic,assign) NSString *profitID;
  14. /**
  15. 客户名称
  16. */
  17. @property (nonatomic, strong) UILabel *lblValueCustomerName;
  18. /**
  19. 时间
  20. */
  21. @property (nonatomic, strong) UILabel *lblValueCreateTime;
  22. /**
  23. 业务类型
  24. */
  25. @property (nonatomic, strong) UILabel *lblValueCustomerType;
  26. /**
  27. 业务员
  28. */
  29. @property (nonatomic, strong) UILabel *lblValueStaff;
  30. /**
  31. 业务部门
  32. */
  33. @property (nonatomic, strong) UILabel *lblValueOrg;
  34. /**
  35. 收入成本毛利
  36. */
  37. @property (nonatomic, strong) UILabel *lblValueIncomeAndCostAndProfit;
  38. @end