55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Model
|
|
{
|
|
/// <summary>
|
|
/// ConfigChartSelect表设置
|
|
/// </summary>
|
|
[Table(Name = "ConfigChartSelect")]
|
|
public class ConfigChartSelect
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Column(IsPrimary = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
[Column(Name = "Index")]
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分类/工况
|
|
/// </summary>
|
|
[Column(Name = "Category", IsNullable = false, StringLength = 50)]
|
|
public string? Category { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[Column(Name = "Name", IsNullable = false, StringLength = 50)]
|
|
public string? Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(ServerTime = DateTimeKind.Local, CanUpdate = true)]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
|
|
/// </summary>
|
|
|
|
public long ConfigChartYAxisId { get; set; }
|
|
public ConfigChartYAxis? ConfigChartYAxis { get; set; }
|
|
|
|
}
|
|
}
|