so_saleinvoice.cs 520 B

1234567891011121314151617181920212223242526
  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("so_saleinvoice")]
  10. public class so_saleinvoice
  11. {
  12. public so_saleinvoice()
  13. {
  14. }
  15. /// <summary>
  16. /// Desc:
  17. /// Default:
  18. /// Nullable:False
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey = true)]
  21. public string csaleinvoiceid { get; set; }
  22. }
  23. }