更新项目配置,新增设备同步模块,优化WebSocket和Swagger配置,增强SCADA系统的免登录接口,支持数据字典项和登录日志的免登录查询与记录。调整Java编译设置,确保更好的开发体验。
This commit is contained in:
55
yy-admin-master/YY.Admin.Core/Entity/SysUserRegWay.cs
Normal file
55
yy-admin-master/YY.Admin.Core/Entity/SysUserRegWay.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
|
||||
|
||||
namespace YY.Admin.Core;
|
||||
|
||||
/// <summary>
|
||||
/// 系统用户注册方案表
|
||||
/// </summary>
|
||||
[SugarTable("sys_user_reg_way", "系统用户注册方案表")]
|
||||
[SysTable]
|
||||
public partial class SysUserRegWay : EntityBaseTenant
|
||||
{
|
||||
/// <summary>
|
||||
/// 方案名称
|
||||
/// </summary>
|
||||
[MaxLength(32)]
|
||||
[SugarColumn(ColumnDescription = "方案名称", Length = 32)]
|
||||
public virtual string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账号类型
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "账号类型")]
|
||||
public virtual AccountTypeEnum AccountType { get; set; } = AccountTypeEnum.NormalUser;
|
||||
|
||||
/// <summary>
|
||||
/// 注册用户默认角色
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "角色")]
|
||||
public virtual long RoleId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 注册用户默认机构
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "机构")]
|
||||
public virtual long OrgId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 注册用户默认职位
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "职位")]
|
||||
public virtual long PosId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "排序")]
|
||||
public int OrderNo { get; set; } = 100;
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[MaxLength(128)]
|
||||
[SugarColumn(ColumnDescription = "备注", Length = 128)]
|
||||
public string? Remark { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user