From 212af0b4bbc0f11e0b552d1bc3a4a73e52127e02 Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期四, 17 十月 2024 09:52:33 +0800 Subject: [PATCH] WMS --- 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_User.cs | 145 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 145 insertions(+), 0 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_User.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_User.cs" new file mode 100644 index 0000000..74d9b74 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_User.cs" @@ -0,0 +1,145 @@ +锘縰sing SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using WIDESEA_Core.DB.Models; +using WIDESEA_Core.Tenants; + +namespace WIDESEA_Model.Models +{ + /// <summary> + /// 鐢ㄦ埛淇℃伅琛� + /// </summary> + //[SugarTable("SysUserInfo")] + [SugarTable("Sys_User", "鐢ㄦ埛琛�")] //('鏁版嵁搴撹〃鍚�'锛�'鏁版嵁搴撹〃澶囨敞') + public class Sys_User : BaseEntity + { + /// <summary> + /// 鐢ㄦ埛ID + /// </summary> + [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "鐢ㄦ埛ID")] + public int User_Id { get; set; } + + /// <summary> + ///甯愬彿 + /// </summary> + [SugarColumn(Length = 100, IsNullable = false, ColumnDescription = "甯愬彿")] + public string UserName { get; set; } + + /// <summary> + /// 瑙掕壊ID + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "瑙掕壊ID")] + public int Role_Id { get; set; } + + /// <summary> + /// 瑙掕壊鍚嶇О + /// </summary> + [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "瑙掕壊鍚嶇О")] + public string RoleName { get; set; } + + /// <summary> + /// 鐢佃瘽 + /// </summary> + [SugarColumn(Length = 11, IsNullable = true, ColumnDescription = "鐢佃瘽")] + public string PhoneNo { get; set; } + + /// <summary> + /// 澶囨敞 + /// </summary> + [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "澶囨敞")] + public string Remark { get; set; } + + /// <summary> + /// 瀵嗙爜 + /// </summary> + [SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "瀵嗙爜")] + public string UserPwd { get; set; } + + /// <summary> + /// 鐪熷疄濮撳悕 + /// </summary> + [SugarColumn(Length = 100, IsNullable = false, ColumnDescription = "鐪熷疄濮撳悕")] + public string UserTrueName { get; set; } + + /// <summary> + /// 閮ㄩ棬 + /// </summary> + [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "閮ㄩ棬")] + public string DeptName { get; set; } + + /// <summary> + /// 閮ㄩ棬ID + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "閮ㄩ棬ID")] + public int? Dept_Id { get; set; } + + /// <summary> + /// 閭 + /// </summary> + [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "閭")] + public string Email { get; set; } + + /// <summary> + /// 鏄惁鍙敤 + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鏄惁鍙敤")] + public byte Enable { get; set; } + + /// <summary> + /// 鎬у埆 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鎬у埆")] + public int? Gender { get; set; } + + /// <summary> + /// 澶村儚 + /// </summary> + [SugarColumn(Length = 500, IsNullable = true, ColumnDescription = "澶村儚")] + public string HeadImageUrl { get; set; } + + /// <summary> + /// 鏈�鍚庡瘑鐮佷慨鏀规椂闂� + /// </summary> + [SugarColumn(IsNullable = true, IsOnlyIgnoreInsert = true, ColumnDescription = "鏈�鍚庡瘑鐮佷慨鏀规椂闂�")] + public DateTime? LastModifyPwdDate { get; set; } + + /// <summary> + /// 鍦板潃 + /// </summary> + [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "鍦板潃")] + public string Address { get; set; } + + /// <summary> + /// 瀹℃牳鏃堕棿 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "瀹℃牳鏃堕棿")] + public DateTime? AuditDate { get; set; } + + /// <summary> + /// 瀹℃牳鐘舵�� + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "瀹℃牳鐘舵��")] + public int? AuditStatus { get; set; } + + /// <summary> + /// 瀹℃牳浜� + /// </summary> + [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "瀹℃牳浜�")] + public string Auditor { get; set; } + + /// <summary> + /// 浠ょ墝 + /// </summary> + [SugarColumn(Length = 500, IsNullable = true, ColumnDescription = "浠ょ墝")] + public string Token { get; set; } + + /// <summary> + /// 绉熸埛ID + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "绉熸埛ID", DefaultValue = "0")] + public long TenantId { get; set; } + } +} -- Gitblit v1.9.3