纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.3 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSPUArrivalVouch
  8. {
  9. public string RJTCode;//拒收单
  10. public string User;//用户
  11. public DateTime MTime;//操作时间
  12. public string VenCode;//供应商编号
  13. public string DepCode;//部门编号
  14. public string DNCode;//到货单号
  15. public string ID;//表头ID
  16. public List<ICSPUArrivalVouchs> Vouchs = new List<ICSPUArrivalVouchs>();
  17. }
  18. public class ICSPUArrivalVouchs
  19. {
  20. public string Sequence;//行号
  21. public string InvCode;//物料编号
  22. public decimal Quantity;//数量
  23. public decimal Amount;//辅助数量
  24. public string Currency;//币种
  25. public decimal UnitPrice;//金额
  26. public string DNDetailID;//到货单表体ID
  27. public string cFree1;//自由项1
  28. public string cFree2;//自由项2
  29. public string cFree3;//自由项3
  30. public string cFree4;//自由项4
  31. public string cFree5;//自由项5
  32. public string cFree6;//自由项6
  33. public string cFree7;//自由项7
  34. public string cFree8;//自由项8
  35. public string cFree9;//自由项9
  36. public string cFree10;//自由项10
  37. }
  38. }