爱思开
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.

68 lines
1.8 KiB

2 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 bool UpdateTodoQuantity { get; set; }
  20. public DateTime MTime { get; set; }
  21. /// <summary>
  22. /// 入库
  23. /// </summary>
  24. public string InWhCode { get; set; }
  25. public string WorkPoint { get; set; }
  26. /// <summary>
  27. /// 出库
  28. /// </summary>
  29. public string OutWhCode { get; set; }
  30. public List<ICSAssemVouchs> details { get; set; }
  31. }
  32. public class ICSAssemVouchs
  33. {
  34. public string Sequence { get; set; }
  35. public string GroupNO { get; set; }
  36. public string Type { get; set; }
  37. public string InvCode { get; set; }
  38. public string WHCode { get; set; }
  39. public string BatchCode { get; set; }
  40. public string ProjectCode { get; set; }
  41. public decimal Quantity { get; set; }
  42. public decimal Amount { get; set; }
  43. public string cFree1 { get; set; }//自由项1
  44. public string cFree2 { get; set; }//自由项2
  45. public string cFree3 { get; set; }//自由项3
  46. public string cFree4 { get; set; }//自由项4
  47. public string cFree5 { get; set; }//自由项5
  48. public string cFree6 { get; set; }//自由项6
  49. public string cFree7 { get; set; }//自由项7
  50. public string cFree8 { get; set; }//自由项8
  51. public string cFree9 { get; set; }//自由项9
  52. public string cFree10 { get; set; }//自由项10
  53. }
  54. }