1
yanjinhui
2025-06-12 10c497ad3b1802e1c8feed8df0a290a407ec72bc
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
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_Loginhsy", "登入记录")] //('数据库表名','数据库表备注')
    public class Dt_Loginhsy: BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int ID { get; set; }
 
        /// <summary>
        /// 用户姓名
        /// </summary>
        [SugarColumn( IsNullable = true,Length =50, ColumnDescription = "用户姓名")]
        public string UserName { get; set; }
 
 
        /// <summary>
        /// 登入时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "登入时间")]
        public DateTime LoginTiem { get; set; }
 
        /// <summary>
        /// 退出时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "退出时间")]
        public DateTime?OutTiem { get; set; }
 
        /// <summary>
        /// 操作内容
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "操作内容")]
        public string? OpCenten {  get; set; }
    }
}