using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DocumentServiceAPI.Model.cyDocumentModel { /// ///文档分类 /// [SugarTable("t_doc_classDel")] public class Doc_ClassDel { public Doc_ClassDel() { } /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } /// /// 分类id /// public int? doc_classification_id { get; set; } /// /// 添加/更新时间 /// public DateTime add_time { get; set; } /// /// 租户标识 /// public int? tenant_code { get; set; } } }