using AngleSharp.Text; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { [SugarTable(nameof(Dt_CacheInfo), "缓存架信息")] public class Dt_CacheInfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } /// /// 缓存架号 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "缓存架号")] public string cacheNo { get; set; } /// /// 缓存架名称 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "缓存架名称")] public string cacheName { get; set; } /// /// 车轴号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轴号")] public string czh { get; set; } /// /// 所属车轮下料位 (左侧-2032 右侧-2042) /// [SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "所属车轮下料位")] public string targetAddress { get; set; } /// /// 创建方式 (1-自动创建 2-手动创建) /// [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "创建方式")] public int createType { get; set; } /// /// 缓存架备注 /// [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "缓存架备注")] public string cacheDES { get; set; } } }