using SqlSugar;
namespace DS.WMS.Core.Sys.Entity;
///
/// 用户字段设置
///
[SqlSugar.SugarTable("sys_field_set")]
public class SysFieldSet
{
///
/// ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 用户id
///
public long? UserId { get; set; }
///
/// 权限Id
///
public long? PermissionId { get; set; }
///
/// 标识序号
///
[SugarColumn(ColumnDescription = "标识序号", IsNullable = false, DefaultValue = "0")]
public int TagNo { get; set; } = 0;
///
/// 字段设置
///
[SugarColumn(ColumnDescription = "字段设置", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
public string Content { get; set; }
}