| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | using System; using System.Collections.Generic;using SqlSugar;namespace wms.sqlsugar.model.fj{    /// <summary>    ///      /// </summary>    [Tenant("fj")]    [SugarTable("Bill_BomSetGrp")]    public partial class BillBomsetgrp : BaseModel    {         /// <summary>         /// IsStop        /// </summary>         [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]        public int IsStop { get; set; }        /// <summary>         /// WarehouseId        /// </summary>         [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]        public long WarehouseId { get; set; }        /// <summary>         /// 仓库编码        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string WarehouseCode { get; set; }        /// <summary>         /// 垛型编码        /// </summary>         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]        public string Code { get; set; }        /// <summary>         /// 垛型名称        /// </summary>         [SugarColumn(ColumnDataType ="nvarchar" , Length = 100  , IsNullable = false )]        public string Name { get; set; }        /// <summary>         /// BomId        /// </summary>         [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]        public long BomId { get; set; }        /// <summary>         /// BomCode(投料信息)        /// </summary>         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]        public string BomCode { get; set; }        /// <summary>         /// 帘线物料id        /// </summary>         [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]        public long PMatId { get; set; }        /// <summary>         /// 帘线物料编码        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string PMatCode { get; set; }        /// <summary>         /// 工字轮个数        /// </summary>         [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]        public int HWCountQty { get; set; }        /// <summary>         /// 托盘类型        /// </summary>         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]        public string TpTypeCode { get; set; }        /// <summary>         /// 层数        /// </summary>         [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]        public int LayerCountQty { get; set; }    }}
 |