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