You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
931 B

2 years ago
  1. namespace SqlSugar.Entities
  2. {
  3. public class BaseEntity
  4. {
  5. [SugarColumn(IsIgnore = true)]
  6. public int RowIndex { get; set; }
  7. [SugarColumn(IsIgnore = true)]
  8. public string CreateUserName { get; set; }
  9. [SugarColumn(IsIgnore = true)]
  10. public string ModifyUserName { get; set; }
  11. [SugarColumn(IsIgnore = true)]
  12. public string ExFeild1 { get; set; }
  13. [SugarColumn(IsIgnore = true)]
  14. public string ExFeild2 { get; set; }
  15. [SugarColumn(IsIgnore = true)]
  16. public string ExFeild3 { get; set; }
  17. [SugarColumn(IsIgnore = true)]
  18. public string ExFeild4 { get; set; }
  19. [SugarColumn(IsIgnore = true)]
  20. public string ExFeild5 { get; set; }
  21. [SugarColumn(IsIgnore = true)]
  22. public string ExFeild6 { get; set; }
  23. [SugarColumn(IsIgnore = true)]
  24. public bool ExFeild7 { get; set; }
  25. }
  26. }