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.
 
 
 

13 line
199 B

  1. using SqlSugar;
  2. namespace BAP.Cap.Sqlsugar.Demo2.Entity
  3. {
  4. [SugarTable("Num")]
  5. public class Num
  6. {
  7. public int Id { get; set; }
  8. public int Number2 { get; set; }
  9. }
  10. }