ct_bondapply.cs 607 B

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