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.

42 lines
1.1 KiB

3 weeks ago
  1. using Dapper.Contrib.Extensions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NFine.Application.Entity
  8. {
  9. /// <summary>
  10. /// 发料申请
  11. /// </summary>
  12. [Table("ICSMOApplyNeg")]
  13. public class ICSMOApplyNeg
  14. {
  15. /// <summary>
  16. /// 非自增主键
  17. /// </summary>
  18. [ExplicitKey]
  19. public string ID { get; set; }
  20. public string WHCode { get; set; }
  21. public string User { get; set; }
  22. public DateTime MTIME { get; set; }
  23. public string WorkPoint { get; set; }
  24. public string Memo { get; set; }
  25. public string Type { get; set; }
  26. public List<ICSMOApplyNegDetail> Detail { get; set; }
  27. }
  28. public class ICSMOApplyNegDetail
  29. {
  30. public int Sequence { get; set; }
  31. public string InvCode { get; set; }
  32. public string Quantity { get; set; }
  33. public string Amount { get; set; }
  34. public string SourceDetailID { get; set; }
  35. public string ExtensionID { get; set; }
  36. }
  37. }