using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_DTO.WMSPart
{
///
///
///
public class StockViewDTO
{
///
/// 仓库ID
///
public int WarehouseId { get; set; }
///
/// 货位编号
///
public string LocationCode { get; set; }
///
/// 货位名称
///
public string LocationName { get; set; }
///
/// 货位列
///
public int Column { get; set; }
///
/// 货位行
///
public int Row { get; set; }
///
/// 货位层
///
public int Layer { get; set; }
///
/// 货位深度
///
public int Depth { get; set; }
///
/// 货位状态
///
public int LocationStatus { get; set; }
///
/// 货位类型
///
public int LocationType { get; set; }
///
/// 巷道编号
///
public string RoadwayNo { get; set; }
///
/// 禁用状态
///
public int EnalbeStatus { get; set; }
///
/// 库存主键
///
public int StockId { get; set; }
///
/// 托盘号
///
public string PalletCode { get; set; }
///
///
///
public bool IsFull { get; set; }
///
/// 物料编码
///
public string MaterielCode { get; set; }
///
/// 物料批号
///
public string BatchNo { get; set; }
///
/// 库存状态
///
public int StockStatus { get; set; }
///
/// 库存备注
///
public string StockRemark { get; set; }
///
/// 创建人
///
public string Creater { get; set; }
///
/// 创建时间
///
public DateTime CreateDate { get; set; }
///
/// 修改人
///
public string Modifier { get; set; }
///
/// 修改时间
///
public DateTime? ModifyDate { get; set; }
///
/// 库存详情
///
[Navigate(NavigateType.OneToMany, nameof(Dt_StockInfoDetail.StockId), nameof(StockId))]
public List Details { get; set; }
}
}