huangxiaoqiang
2025-09-25 3dd51bc3ddd00cc0c8b901ad039f877d510a61ff
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable(nameof(Sys_DelLog), "删除日志")]
    public class Sys_DelLog: BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 文件名称
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "文件名称")]
        public string FileName { get; set; }
 
        /// <summary>
        /// 路径
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "路径")]
        public string Url { get; set; }
 
        /// <summary>
        /// 间隔时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "间隔时间")]
        public int IntervalTime { get; set; }
    }
}