V1版本
This commit is contained in:
44
CapMachine.Model/HistoryChartTabGroup.cs
Normal file
44
CapMachine.Model/HistoryChartTabGroup.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
|
||||
namespace CapMachine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// HistoryChartTabGroup表设置
|
||||
/// 分页数据名称维护
|
||||
/// </summary>
|
||||
[Table(Name = "HistoryChartTabGroup")]
|
||||
public class HistoryChartTabGroup
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[Column(IsPrimary = true, IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
[Column(Name = "Index")]
|
||||
public int Index { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Machine
|
||||
/// 机器名称
|
||||
/// </summary>
|
||||
[Column(Name = "Machine", IsNullable = false, StringLength = 50)]
|
||||
public string? Machine { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Name
|
||||
/// </summary>
|
||||
[Column(Name = "Name", IsNullable = false, StringLength = 50)]
|
||||
public string? Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否启用
|
||||
/// </summary>
|
||||
[Column(Name = "IsEnable")]
|
||||
public bool IsEnable { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user