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
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int ID { get; set; }
|
|
/// <summary>
|
/// 缓存架号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "缓存架号")]
|
public string cacheNo { get; set; }
|
|
/// <summary>
|
/// 缓存架名称
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "缓存架名称")]
|
public string cacheName { get; set; }
|
|
/// <summary>
|
/// 车轴号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轴号")]
|
public string czh { get; set; }
|
|
/// <summary>
|
/// 所属车轮下料位 (左侧-2032 右侧-2042)
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "所属车轮下料位")]
|
public string targetAddress { get; set; }
|
|
/// <summary>
|
/// 创建方式 (1-自动创建 2-手动创建)
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "创建方式")]
|
public int createType { get; set; }
|
|
/// <summary>
|
/// 缓存架备注
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "缓存架备注")]
|
public string cacheDES { get; set; }
|
}
|
}
|