//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.SquareCabinWCS //{ // [SugarTable("Dt_Product", "产品表")] // internal class Dt_Product:BaseEntity // { // [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] // public int Id { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户CODE")] // public string CustomerCode { get; set; } = string.Empty; // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "物料类型CODE")] // public string MaterialCode { get; set; } = string.Empty; // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品编码")] // public string ProductCode { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品名称")] // public string ProductName { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品条码")] // public string ProductBarCode { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品规格")] // public string ProductSpecifications { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单位")] // public string Unit { get; set; } // [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单品长(cm)")] // public decimal SingleProductLongNum { get; set; } // [SugarColumn(IsNullable = true, ColumnDescription = "单品宽(cm)")] // public decimal SingleProductWideNum { get; set; } // [SugarColumn(IsNullable = true,ColumnDescription = "单品高(cm)")] // public decimal SingleProductHighNum { get; set; } // [SugarColumn(IsNullable = true,ColumnDescription = "单品重量(kg)")] // public decimal SingleProductWeight { get; set; } // [SugarColumn(IsNullable = true, ColumnDescription = "单品体积(cm³)")] // public decimal SingleProductVolume { get; set; } // [SugarColumn(IsNullable = true, ColumnDescription = "是否删除(1是0否)")] // public int IsDelete { get; set; } // } //}