username@email.com
2024-10-29 a5851a4e906725b868bcfdaa8c59249523137586
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
42
43
44
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.Model.Entities.baseModel
{
    /// <summary>
    /// 百分兵法新增数据库基础模型
    /// </summary>
    public class BFBaseModel
    {
        /// <summary>
        /// 建立时间
        /// </summary>        
        [SugarColumn(ColumnDescription = "建立时间" ,IsNullable =true)]
        public DateTime? createTime { get; set; }
 
        /// <summary>
        /// 修改时间
        /// </summary>        
        [SugarColumn(ColumnDescription = "修改时间", IsNullable = true)]
        public DateTime? upDataTime { get; set; }
 
        /// <summary>
        /// 创建人
        /// </summary>        
        [SugarColumn(ColumnDescription = "创建人", IsNullable = true)]
        public string createBy { get; set; }
 
        /// <summary>
        /// 修改人
        /// </summary>        
        [SugarColumn(ColumnDescription = "修改人", IsNullable = true)]
        public string upDataBy { get; set; }
        /// <summary>
        /// 删除标志
        /// </summary>        
        [SugarColumn(ColumnDescription = "删除标志")]
        public bool isdelete { get; set; }= false;
    }
}