using SqlSugar; namespace Uninpho.DBOperation.Model { public class T_metadata_account { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } public string name { get; set; } public string chname { get; set; } public string ttype { get; set; } public string tablename { get; set; } public decimal tlength { get; set; } public string remark { get; set; } public bool visible { get; set; } public bool canedit { get; set; } } }