using SqlSugar;
namespace DS.WMS.Core.SecurityModule.Entity;
///
///
///
[SugarTable("tb_SecurityUser")]
public partial class tb_SecurityUser
{
public tb_SecurityUser()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string UserName { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Duty { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Phone { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Note { get; set; }
}