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.
32 lines
732 B
C#
32 lines
732 B
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
|
|
/// <summary>
|
|
/// 用户字段设置
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_field_set")]
|
|
public class SysFieldSet
|
|
{
|
|
/// <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>
|
|
[SugarColumn(ColumnDescription = "字段设置", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
|
|
public string Content { get; set; }
|
|
} |