using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { public class OrderDetails { /// /// ID /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "ID")] public int id { get; set; } /// /// 站台编号 /// [SugarColumn( ColumnDescription = "订单详情id")] public int OrderDetails_id { get; set; } /// /// 产品编号 /// [SugarColumn(Length = 50, ColumnDescription = "产品编号")] public int Orderdetails_productid { get; set; } /// /// 产品条码 /// [SugarColumn( ColumnDescription = "产品条码")] public string Orderdetails_outid { get; set; } /// /// 产品代码 /// [SugarColumn( ColumnDescription = "产品代码")] public string Orderdetails_code { get; set; } /// /// 材料 /// [SugarColumn( ColumnDescription = "材料")] public string Orderdetails_material { get; set; } /// /// 工件名 /// [SugarColumn(ColumnDescription = "工件名")] public string Orderdetails_name { get; set; } /// /// 物料名 /// [SugarColumn(ColumnDescription = "物料名")] public string Orderdetails_productName { get; set; } /// /// 颜色名称 /// [SugarColumn( Length = 50, ColumnDescription = "颜色名称")] public string Orderdetails_colorName { get; set; } /// /// 长度 /// [SugarColumn(Length = 50, ColumnDescription = "长度")] public decimal Orderdetails_length { get; set; } /// /// 宽度 /// [SugarColumn(Length = 50, ColumnDescription = "宽度")] public decimal Orderdetails_width { get; set; } /// /// 厚度 /// [SugarColumn(Length = 50, ColumnDescription = "厚度")] public decimal Orderdetails_thickness { get; set; } /// /// 切割长度 /// [SugarColumn(Length = 50, ColumnDescription = "切割长度")] public decimal Orderdetails_cutLength { get; set; } /// /// 切割宽度 /// [SugarColumn(Length = 50, ColumnDescription = "切割宽度")] public decimal Orderdetails_cutWidth { get; set; } /// /// 切割厚度 /// [SugarColumn(Length = 50, ColumnDescription = "切割厚度")] public decimal Orderdetails_cutThickness { get; set; } /// /// 编号 /// [SugarColumn(Length = 50, ColumnDescription = "编号")] public int Orderdetails_num { get; set; } /// /// 纹理 /// [SugarColumn(Length = 50, ColumnDescription = "纹理")] public string Orderdetails_grain { get; set; } /// /// 订单头表id /// [SugarColumn(Length = 50, ColumnDescription = "订单头表id")] public int Orderrowsid { get; set; } /// /// 状态 /// [SugarColumn(IsNullable = true, ColumnDescription = "状态")] public int? Orderdetails_status { get; set; } } }