更新项目配置,新增设备同步模块,优化WebSocket和Swagger配置,增强SCADA系统的免登录接口,支持数据字典项和登录日志的免登录查询与记录。调整Java编译设置,确保更好的开发体验。
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
namespace YY.Admin.Services.Service;
|
||||
|
||||
/// <summary>
|
||||
/// 数据字典项输出
|
||||
/// </summary>
|
||||
public class JeecgDictItemOutput
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
|
||||
public string? DictCode { get; set; }
|
||||
|
||||
public string? DictName { get; set; }
|
||||
|
||||
public string? ItemText { get; set; }
|
||||
|
||||
public string? ItemValue { get; set; }
|
||||
|
||||
public string? ItemDescription { get; set; }
|
||||
|
||||
public int? SortOrder { get; set; }
|
||||
|
||||
public StatusEnum Status { get; set; } = StatusEnum.Disable;
|
||||
|
||||
public string? ItemColor { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
public DateTime? UpdateTime { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
namespace YY.Admin.Services.Service;
|
||||
|
||||
/// <summary>
|
||||
/// 数据字典分页查询参数
|
||||
/// </summary>
|
||||
public class PageJeecgDictItemInput : PagedRequestBase
|
||||
{
|
||||
public string? DictCode { get; set; }
|
||||
|
||||
public string? DictName { get; set; }
|
||||
|
||||
public string? ItemText { get; set; }
|
||||
|
||||
public string? ItemValue { get; set; }
|
||||
|
||||
public StatusEnum? Status { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user