using Magicodes.ExporterAndImporter.Core; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Model { /// /// 仓库信息 /// public class Dt_roadwayinfo { /// /// 主键ID /// [ImporterHeader(Name = "主键ID")] [ExporterHeader(DisplayName = "主键ID")] [SugarColumn(IsPrimaryKey = true, IsIdentity = true, IsNullable = false, ColumnDescription = "主键ID")] public int Id { get; set; } /// /// 巷道编号 /// [ImporterHeader(Name = "巷道编号")] [ExporterHeader(DisplayName = "巷道编号")] [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "巷道编号")] public string RoadwayNo { get; set; } /// /// 禁用状态 /// [ImporterHeader(Name = "禁用状态")] [ExporterHeader(DisplayName = "禁用状态")] [SugarColumn(IsNullable = true, ColumnDescription = "禁用状态")] public int? EnableStatus { get; set; } /// /// 入库站台编号 /// [ImporterHeader(Name = "入库站台编号")] [ExporterHeader(DisplayName = "入库站台编号")] [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "入库站台编号")] public string InStationCode { get; set; } /// /// 堆垛机入库站台编号 /// [ImporterHeader(Name = "堆垛机入库站台编号")] [ExporterHeader(DisplayName = "堆垛机入库站台编号")] [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "堆垛机入库站台编号")] public string InSCStationCode { get; set; } /// /// 出库站台编号 /// [ImporterHeader(Name = "出库站台编号")] [ExporterHeader(DisplayName = "出库站台编号")] [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "出库站台编号")] public string OutStationCode { get; set; } /// /// 堆垛机出库站台编号 /// [ImporterHeader(Name = "堆垛机出库站台编号")] [ExporterHeader(DisplayName = "堆垛机出库站台编号")] [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "堆垛机出库站台编号")] public string OutSCStationCode { get; set; } /// /// 备注 /// [ImporterHeader(Name = "备注")] [ExporterHeader(DisplayName = "备注")] [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")] public string Remark { get; set; } /// /// 创建者 /// [ImporterHeader(Name = "创建者")] [ExporterHeader(DisplayName = "创建者")] [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "创建者")] public string Creater { get; set; } /// /// 创建时间 /// [ImporterHeader(Name = "创建时间")] [ExporterHeader(DisplayName = "创建时间")] [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] public DateTime? CreateDate { get; set; } /// /// 修改人 /// [ImporterHeader(Name = "修改人")] [ExporterHeader(DisplayName = "修改人")] [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "修改人")] public string Modifier { get; set; } /// /// 修改日期 /// [ImporterHeader(Name = "修改日期")] [ExporterHeader(DisplayName = "修改日期")] [SugarColumn(IsNullable = true, ColumnDescription = "修改日期")] public DateTime? ModifyDate { get; set; } /// /// 仓库名称 /// [ImporterHeader(Name = "仓库名称")] [ExporterHeader(DisplayName = "仓库名称")] [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "仓库名称")] public string WarehouseName { get; set; } /// /// 仓库代码 /// [ImporterHeader(Name = "仓库代码")] [ExporterHeader(DisplayName = "仓库代码")] [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "仓库代码")] public string WarehouseNumber { get; set; } /// /// 仓库类型 /// [ImporterHeader(Name = "仓库类型")] [ExporterHeader(DisplayName = "仓库类型")] [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "仓库类型")] public string WarehouseInvType { get; set; } } }