DayAccountDetailModel.h 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // DayAccountDetailModel.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/16.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface DayAccountDetailModel : NSObject
  10. /**
  11. 单据类型
  12. */
  13. @property(nonatomic,copy) NSString *typeNo;
  14. /**
  15. 单据号
  16. */
  17. @property(nonatomic,copy) NSString *businessNumber;
  18. /**
  19. 账款操作类型
  20. */
  21. @property(nonatomic,copy) NSString *billOperation;
  22. /**
  23. 销售货款总额
  24. */
  25. @property(nonatomic,copy) NSString *receivableAmount;
  26. /**
  27. 结算方式
  28. */
  29. @property(nonatomic,copy) NSString *settleWay;
  30. /**
  31. 收款额
  32. */
  33. @property(nonatomic,copy) NSString *receiptAmount;
  34. /**
  35. 使用定金
  36. */
  37. @property(nonatomic,copy) NSString *earnestAmount;
  38. /**
  39. 使用预存
  40. */
  41. @property(nonatomic,copy) NSString *depositAmount;
  42. @end