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