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.

36 lines
708 B
C#

using SqlSugar;
namespace DS.WMS.Core.SecurityModule.Entity;
///<summary>
///
///</summary>
[SugarTable("tb_SecurityUserRelation")]
public partial class tb_SecurityUserRelation
{
public tb_SecurityUserRelation()
{
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string UserId { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string TypeId { get; set; }
}