using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 库存移动详情 /// [SugarTable("wms_inventory_movement_detail")] public class WmsInventoryMovementDetail { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 库存移动Id /// [SugarColumn(ColumnName = "inventory_movement_id")] public long? InventoryMovementId { get; set; } /// /// 物料 /// [SugarColumn(ColumnName = "item_id")] public long? ItemId { get; set; } /// /// 计划数量 /// [SugarColumn(ColumnName = "plan_quantity")] public decimal? PlanQuantity { get; set; } /// /// 实际数量 /// [SugarColumn(ColumnName = "real_quantity")] public decimal? RealQuantity { get; set; } /// /// 删除标识 /// 默认值: 0 /// [SugarColumn(ColumnName = "del_flag")] public byte DelFlag { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public long? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 修改人 /// [SugarColumn(ColumnName = "update_by")] public long? UpdateBy { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } /// /// 源货架 /// [SugarColumn(ColumnName = "source_rack_id")] public long? SourceRackId { get; set; } /// /// 源仓库 /// [SugarColumn(ColumnName = "source_warehouse_id")] public long? SourceWarehouseId { get; set; } /// /// 源库区 /// [SugarColumn(ColumnName = "source_area_id")] public long? SourceAreaId { get; set; } /// /// 移库状态 /// [SugarColumn(ColumnName = "move_status")] public byte? MoveStatus { get; set; } /// /// 目标货架 /// [SugarColumn(ColumnName = "target_rack_id")] public long? TargetRackId { get; set; } /// /// 目标仓库 /// [SugarColumn(ColumnName = "target_warehouse_id")] public long? TargetWarehouseId { get; set; } /// /// 目标库区 /// [SugarColumn(ColumnName = "target_area_id")] public long? TargetAreaId { get; set; } } }