T_metadata_account.cs 568 B

1234567891011121314151617181920
  1. 
  2. using SqlSugar;
  3. namespace Uninpho.DBOperation.Model
  4. {
  5. public class T_metadata_account
  6. {
  7. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  8. public int Id { get; set; }
  9. public string name { get; set; }
  10. public string chname { get; set; }
  11. public string ttype { get; set; }
  12. public string tablename { get; set; }
  13. public decimal tlength { get; set; }
  14. public string remark { get; set; }
  15. public bool visible { get; set; }
  16. public bool canedit { get; set; }
  17. }
  18. }