纽威
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.

56 lines
1.3 KiB

3 years ago
3 years ago
3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.Entity
  7. {
  8. public class ICSAssemVouch
  9. {
  10. /// <summary>
  11. /// 部门
  12. /// </summary>
  13. public string DepCode { get; set; }
  14. /// <summary>
  15. /// 用户编号
  16. /// </summary>
  17. public string User { get; set; }
  18. public bool UpdateStock { get; set; }
  19. public DateTime MTime { get; set; }
  20. /// <summary>
  21. /// 入库
  22. /// </summary>
  23. public string InWhCode { get; set; }
  24. public string WorkPoint { get; set; }
  25. /// <summary>
  26. /// 出库
  27. /// </summary>
  28. public string OutWhCode { get; set; }
  29. public List<ICSAssemVouchs> details { get; set; }
  30. }
  31. public class ICSAssemVouchs
  32. {
  33. public string Sequence { get; set; }
  34. public string GroupNO { get; set; }
  35. public string Type { get; set; }
  36. public string InvCode { get; set; }
  37. public string WHCode { get; set; }
  38. public string BatchCode { get; set; }
  39. public string ProjectCode { get; set; }
  40. public decimal Quantity { get; set; }
  41. public decimal Amount { get; set; }
  42. }
  43. }