| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | using System;using System.Collections.Generic;using SqlSugar;namespace wms.sqlsugar.model.fj{    /// <summary>    ///  机台表    /// </summary>    [Tenant("fj")]    [SugarTable("Bill_MachInfo")]    public partial class BillMachinfo : BaseModel    {        /// <summary>         /// 仓库id        /// </summary>         [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]        public long WarehouseId { get; set; }        /// <summary>         /// 仓库编码(1N,1S,2N,2S,3N,3S)        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50)]        public string WarehouseCode { get; set; }        /// <summary>         /// 分拣库序号        /// </summary>         [SugarColumn(ColumnDataType = "int")]        public int WarehouseSort { get; set; }        /// <summary>         /// 南北向        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50)]        public string WareDirect { get; set; }        /// <summary>         /// WareAreaId        /// </summary>         [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]        public long WareAreaId { get; set; }        /// <summary>         /// 是否停止        /// </summary>         [SugarColumn(ColumnDataType = "int", IsNullable = false)]        public int IsStop { get; set; }        /// <summary>         /// 机台号        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string MachNo { get; set; }        /// <summary>         /// 名称        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]        public string Name { get; set; }        /// <summary>         /// 机台组        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string GrpCode { get; set; }        /// <summary>         /// AGV托盘位        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string Station { get; set; }        /// <summary>         /// 左/右手车        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string Direction { get; set; }        /// <summary>        /// 帘线工序工单号        /// </summary>        [SugarColumn(ColumnName = "DocCode", ColumnDataType = "nvarchar", Length = 50)]        public string BillCode { get; set; }        /// <summary>        /// 生产订单号        /// </summary>        [SugarColumn(ColumnName = "WorkOrder", ColumnDataType = "nvarchar", Length = 50)]        public string WorkOrder { get; set; }        /// <summary>         /// 码垛总数量        /// </summary>         [SugarColumn(ColumnDataType = "int", IsNullable = false)]        public int PlanQty { get; set; }    }}
 |