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