平安校园
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.
 
 
 
 
 
 

42 lines
1.3 KiB

  1. namespace SafeCampus.System;
  2. /// <summary>
  3. /// 批量修改
  4. ///</summary>
  5. [SugarTable("batch_edit", TableDescription = "批量修改")]
  6. [Tenant(SqlSugarConst.DB_DEFAULT)]
  7. [CodeGen]
  8. [IgnoreInitTable]
  9. public class BatchEdit : PrimaryKeyEntity
  10. {
  11. /// <summary>
  12. /// 唯一编码
  13. ///</summary>
  14. [SugarColumn(ColumnName = "Code", ColumnDescription = "唯一编码", Length = 100, IsNullable = false)]
  15. public string Code { get; set; }
  16. /// <summary>
  17. /// 所属库
  18. ///</summary>
  19. [SugarColumn(ColumnName = "ConfigId", ColumnDescription = "所属库", Length = 100, IsNullable = false)]
  20. public string ConfigId { get; set; }
  21. /// <summary>
  22. /// 实体名
  23. ///</summary>
  24. [SugarColumn(ColumnName = "EntityName", ColumnDescription = "实体名", Length = 100, IsNullable = false)]
  25. public string EntityName { get; set; }
  26. /// <summary>
  27. /// 表名
  28. ///</summary>
  29. [SugarColumn(ColumnName = "TableName", ColumnDescription = "表名", Length = 100, IsNullable = false)]
  30. public string TableName { get; set; }
  31. /// <summary>
  32. /// 表描述
  33. ///</summary>
  34. [SugarColumn(ColumnName = "TableDescription", ColumnDescription = "表描述", Length = 100, IsNullable = false)]
  35. public string TableDescription { get; set; }
  36. }