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.
31 lines
615 B
C#
31 lines
615 B
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
|
|
/// <summary>
|
|
/// 用户字段设置
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_user_field")]
|
|
public class SysUserFieldSet
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户id
|
|
/// </summary>
|
|
public long? UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 权限Id
|
|
/// </summary>
|
|
public long? PermissionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段设置
|
|
/// </summary>
|
|
public string Content { get; set; }
|
|
} |