po_order_b.cs 810 B

123456789101112131415161718192021222324252627282930313233343536
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HH.YiDaSyncNC.Dtos.NC
  8. {
  9. [SugarTable("po_order_b")]
  10. public class po_order_b
  11. {
  12. public po_order_b()
  13. {
  14. }
  15. /// <summary>
  16. /// Desc:
  17. /// Default:
  18. /// Nullable:False
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey = true)]
  21. public string pk_order_b { get; set; }
  22. public string pk_order { get; set; } = "~";
  23. public string pk_group { get; set; } = "~";
  24. public string pk_org { get; set; } = "~";
  25. public string pk_org_v { get; set; } = "~";
  26. public decimal? nastnum { get; set; }
  27. public string dplanarrvdate { get; set; }
  28. }
  29. }