using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Model
{
///
/// ConfigChartYAxis表设置
///
[Table(Name = "ConfigChartYAxis")]
public class ConfigChartYAxis
{
///
/// 主键
///
[Column(IsPrimary = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 序号
///
[Column(Name = "Index")]
public int Index { get; set; }
///
/// 标尺名称
///
[Column(Name = "Name", IsNullable = false, StringLength = 50)]
public string? Name { get; set; }
///
/// Max
///
[Column(Name = "Max")]
public double Max { get; set; }
///
/// Min
///
[Column(Name = "Min")]
public double Min { get; set; }
///
/// 单位
///
[Column(Name = "Unit", IsNullable = false, StringLength = 10)]
public string? Unit { get; set; }
//[Column(ServerTime = DateTimeKind.Local, CanUpdate = true)]
//public DateTime CreateTime { get; set; }
}
}