25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
245 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HKLib.SQLHelper
  5. {
  6. public class BaseEntity
  7. {
  8. [SqlSugar.SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
  9. public int Id { get; set; }
  10. }
  11. }