You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
945 B
C#
50 lines
945 B
C#
2 years ago
|
using SqlSugar;
|
||
|
|
||
|
namespace DS.WMS.Core.SecurityModule.Entity;
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[SugarTable("tb_SecurityUser")]
|
||
|
public partial class tb_SecurityUser
|
||
|
{
|
||
|
public tb_SecurityUser()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:
|
||
|
/// Default:
|
||
|
/// Nullable:False
|
||
|
/// </summary>
|
||
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public string UserName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public string Duty { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public string Phone { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public string Note { get; set; }
|
||
|
}
|