更新项目配置,新增设备同步模块,优化WebSocket和Swagger配置,增强SCADA系统的免登录接口,支持数据字典项和登录日志的免登录查询与记录。调整Java编译设置,确保更好的开发体验。
This commit is contained in:
59
yy-admin-master/YY.Admin.Core/Entity/SysTemplate.cs
Normal file
59
yy-admin-master/YY.Admin.Core/Entity/SysTemplate.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
|
||||
|
||||
namespace YY.Admin.Core;
|
||||
|
||||
/// <summary>
|
||||
/// 系统模板表
|
||||
/// </summary>
|
||||
[SysTable]
|
||||
[SugarTable("sys_template", "系统模板表")]
|
||||
[SugarIndex("index_{table}_C", nameof(Code), OrderByType.Asc, IsUnique = true)]
|
||||
[SugarIndex("index_{table}_G", nameof(GroupName), OrderByType.Asc)]
|
||||
public partial class SysTemplate : EntityBaseTenant
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
[MaxLength(128)]
|
||||
[SugarColumn(ColumnDescription = "名称", Length = 128)]
|
||||
public virtual string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分组名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "分组名称")]
|
||||
public virtual TemplateTypeEnum Type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 编码
|
||||
/// </summary>
|
||||
[MaxLength(128)]
|
||||
[SugarColumn(ColumnDescription = "编码", Length = 128)]
|
||||
public virtual string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分组名称
|
||||
/// </summary>
|
||||
[MaxLength(32)]
|
||||
[SugarColumn(ColumnDescription = "分组名称", Length = 32)]
|
||||
public virtual string GroupName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 模板内容
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "模板内容", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
||||
public virtual string Content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[MaxLength(128)]
|
||||
[SugarColumn(ColumnDescription = "备注", Length = 128)]
|
||||
public virtual string? Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "排序")]
|
||||
public virtual int OrderNo { get; set; } = 100;
|
||||
}
|
||||
Reference in New Issue
Block a user