SingleProfitDetailViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // SingleProfitDetailViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/18.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface SingleProfitDetailViewController : BaseViewController
  10. @property(copy, nonatomic)NSString *sInvoiceNo;
  11. @property(copy, nonatomic)NSString *sInvoiceType;
  12. @property(copy, nonatomic)NSString *sOrganizationCode;
  13. @property(copy, nonatomic)NSString *sOrganizationName;
  14. @property(copy, nonatomic)NSString *sCustomerCode;
  15. @property(copy, nonatomic)NSString *sCustomerName;
  16. @property(copy, nonatomic)NSString *sStaffName;
  17. @property(copy, nonatomic)NSString *sTelephone;
  18. @property(copy, nonatomic)NSString *sCustomerTypeName;
  19. @property(copy, nonatomic)NSString *sCustomerAddress;
  20. @property(copy, nonatomic)NSString *sChannelName;
  21. @property(copy, nonatomic)NSString *sIncomeAmount;
  22. @property(copy, nonatomic)NSString *sCostAmount;
  23. @property(copy, nonatomic)NSString *sMarginAmount;
  24. @property(copy, nonatomic)NSString *sCustomerAmount;
  25. @property(copy, nonatomic)NSString *sStaffAmount;
  26. @property(copy, nonatomic)NSString *sServiceAmount;
  27. @property(copy, nonatomic)NSString *sFeesAmount;
  28. @property(copy, nonatomic)NSString *sProfitAmount;
  29. @property(copy, nonatomic)NSString *sAccountDate;
  30. @property(copy, nonatomic)NSString *sRemarks;
  31. @end