huangxiaoqiang
8 小时以前 960b33fa24c47a330e51a2c24859d681ae62caeb
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfo.cs
@@ -27,6 +27,12 @@
        public string PalletCode { get; set; }
        /// <summary>
        /// 货位ID
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "货位ID")]
        public string LocationId { get; set; }
        /// <summary>
        /// 货位编码
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "货位编码")]
@@ -36,7 +42,7 @@
        /// 是否整出
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否整出")]
        public bool IsFullExit { get; set; } = true;
        public bool IsFull { get; set; } = true;
        /// <summary>
        /// 状态
@@ -45,22 +51,60 @@
        public int StockStatus { get; set; }
        /// <summary>
        /// 单据编号
        /// 物料名称
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "单据编号")]
        public string OrderNo { get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "物料名称")]
        public string MaterielName { get; set; }
        /// <summary>
        /// 单据类型
        /// 出库时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "单据类型")]
        public string OrderType { get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "出库时间")]
        public DateTime OutboundTime { get; set; }
        /// <summary>
        /// 工艺开始时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "工艺开始时间")]
        public string LinedProcessFeedbackTime { get; set; }
        /// <summary>
        /// 工艺时长
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "工艺时长")]
        public string SpecialParameterDuration { get; set; }
        /// <summary>
        /// 产线
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "产线")]
        public string ProductionLine { get; set; }
        /// <summary>
        /// 库区ID
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "库区ID")]
        public string AreaCode { get; set; }
        /// <summary>
        /// 当前工序
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "当前工序")]
        public string ProcessCode { get; set; }
        /// <summary>
        /// 下一工序
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "下一工序")]
        public string NextProcessCode { get; set; }
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        public string Remark { get; set; }
        /// <summary>
        /// 库存明细
@@ -73,7 +117,7 @@
        /// 货位数据
        /// </summary>
        [SugarColumn(ColumnName = "LocationInfo")]
        [Navigate(NavigateType.OneToOne, nameof(LocationCode), nameof(DtLocationInfo.LocationCode))]
        [Navigate(NavigateType.OneToOne, nameof(LocationId), nameof(DtLocationInfo.Id))]
        public DtLocationInfo? LocationInfo { get; set; }
    }
}