更新项目配置,新增设备同步模块,优化WebSocket和Swagger配置,增强SCADA系统的免登录接口,支持数据字典项和登录日志的免登录查询与记录。调整Java编译设置,确保更好的开发体验。

This commit is contained in:
geht
2026-04-28 10:23:58 +08:00
parent bbe46dcf2d
commit 142a0bdaba
1013 changed files with 41858 additions and 28 deletions

View File

@@ -0,0 +1,59 @@
using SqlSugar;
namespace YY.Admin.Core;
/// <summary>
/// Jeecg 数据字典项同构表(桌面端)
/// </summary>
[SugarTable("jeecg_sys_dict_item", "Jeecg数据字典项同构表")]
[SysTable]
public class JeecgSysDictItem
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, Length = 64)]
public string Id { get; set; } = string.Empty;
[SugarColumn(ColumnName = "dict_id", Length = 64, IsNullable = true)]
public string? DictId { get; set; }
[SugarColumn(ColumnName = "dict_name", Length = 255, IsNullable = true)]
public string? DictName { get; set; }
[SugarColumn(ColumnName = "dict_code", Length = 255, IsNullable = true)]
public string? DictCode { get; set; }
[SugarColumn(ColumnName = "dict_type", IsNullable = true)]
public int? DictType { get; set; }
[SugarColumn(ColumnName = "dict_description", Length = 500, IsNullable = true)]
public string? DictDescription { get; set; }
[SugarColumn(ColumnName = "item_text", Length = 255, IsNullable = true)]
public string? ItemText { get; set; }
[SugarColumn(ColumnName = "item_value", Length = 255, IsNullable = true)]
public string? ItemValue { get; set; }
[SugarColumn(ColumnName = "item_description", Length = 500, IsNullable = true)]
public string? ItemDescription { get; set; }
[SugarColumn(ColumnName = "sort_order", IsNullable = true)]
public int? SortOrder { get; set; }
[SugarColumn(ColumnName = "status", IsNullable = true)]
public int? Status { get; set; }
[SugarColumn(ColumnName = "item_color", Length = 100, IsNullable = true)]
public string? ItemColor { get; set; }
[SugarColumn(ColumnName = "create_by", Length = 100, IsNullable = true)]
public string? CreateBy { get; set; }
[SugarColumn(ColumnName = "create_time", IsNullable = true)]
public DateTime? CreateTime { get; set; }
[SugarColumn(ColumnName = "update_by", Length = 100, IsNullable = true)]
public string? UpdateBy { get; set; }
[SugarColumn(ColumnName = "update_time", IsNullable = true)]
public DateTime? UpdateTime { get; set; }
}