using Magicodes.ExporterAndImporter.Core; 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.System { [SugarTable(nameof(Dt_traycodeinfo), "托盘信息")] public class Dt_traycodeinfo { [ImporterHeader(Name = "主键")] [SugarColumn(IsPrimaryKey = false, IsIdentity = false, ColumnDescription = "主键")] public int traycode_id { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘类型编号")] public string traycode_type { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘类型")] public string traycode_name { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "创建者")] public string traycode_creator { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "创建时间")] public DateTime traycode_createtime { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "修改者")] public string traycode_updater { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "修改时间")] public DateTime traycode_updatetime { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "描述")] public string traycode_des { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘物料")] public string traycode_materiel { get; set; } [SugarColumn(IsNullable = true, ColumnDescription = "状态")] public int traycode_staute { get; set; } [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘条码")] public string traycode_code { get; set; } } }