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.

17 lines
371 B

2 years ago
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Linq.Expressions;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace OrmTest.Models
  9. {
  10. public class School
  11. {
  12. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  13. public int Id { get; set; }
  14. public string Name { get; set; }
  15. }
  16. }