liulijun
2026-02-25 2b66d4c2dc5b1c00805fa47ba65d9a8d2724ab35
´úÂë¹ÜÀí/WMS/WMSServices/WIDESEA_Model/Models/Stock/Dt_ProStockInfo.cs
@@ -21,64 +21,63 @@
        public int Id { get; set; }
        /// <summary>
        /// æ‰˜ç›˜å·
        /// æ¨¡å…·ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "胶框号/外箱号")]
        public string PalletCode { get; set; }
        /// <summary>
        /// åº“存属性<br/>
        /// æˆå“ =1,
        /// åŠæˆå“ = 2,
        /// åŽŸææ–™ = 3,
        /// è¾…料备件 = 4,
        /// ç©ºæ‰˜ = 5,
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "库存属性")]
        public int ProStockAttribute { get; set; }
        /// <summary>
        /// èƒ¶æ¡†ç±»åž‹
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "胶框类型")]
        public int PalletType { get; set; }
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "模具编号")]
        public string ContainerCode { get; set; }
        /// <summary>
        /// è´§ä½ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "货位编号")]
        [SugarColumn(IsNullable = false, Length = 30, ColumnDescription = "货位编号")]
        public string LocationCode { get; set; }
        /// <summary>
        /// å‡ºè´§å•号
        /// æ–™æ¡†ç±»åž‹
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "出货单号")]
        public string ShipmentOrder { get; set; }
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "料框类型")]
        public int ContainerType { get; set; }
        /// <summary>
        /// å…¥åº“单号
        /// ä»“库ID
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "入库单号")]
        public string ProInOrderNo { get; set; }
        /// <summary>
        /// ä»“库主键
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")]
        [SugarColumn(IsNullable = false, ColumnDescription = "仓库ID")]
        public int WarehouseId { get; set; }
        /// <summary>
        /// åº“存状态
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "库存状态")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "库存状态")]
        public int StockStatus { get; set; }
        /// <summary>
        /// æ˜¯å¦ç©ºæ¡†
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "是否空框")]
        public bool IsEmpty { get; set; }
        /// <summary>
        /// æ˜¯å¦æ»¡æ¡†
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "是否满框")]
        public bool IsFill { get; set; }
        /// <summary>
        /// æ˜¯å¦åˆ†æ‹£
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "是否分拣")]
        public bool IsPick { get; set; }
        /// <summary>
        /// è®¢å•号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "订单号")]
        public string OrderNo { get; set; }
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "备注")]
        public string Remark { get; set; }
        /// <summary>
        /// åº“存明细
        /// </summary>
        [Navigate(NavigateType.OneToMany, nameof(Dt_ProStockInfoDetail.ProStockId), nameof(Id))]
        public List<Dt_ProStockInfoDetail> proStockInfoDetails { get; set; }
    }
}