username@email.com
2024-12-26 90858c80d9921b555119f41060c1f883f6e6ffc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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; }
    }
}