bd_projectclass.cs 617 B

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