using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Admin.NET.Core;
namespace Admin.NET.Application
{
///
/// 出库输入参数
///
public class ExWareHouseOutput
{
///
/// 物料编号
///
public string MaterialNo { get; set; }
///
/// 物料类别;数据字典
///
public MaterialType MaterialType { get; set; }
///
/// 物料批次
///
public string MaterialBatch { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 物料规格
///
public string MaterialSpec { get; set; }
///
/// 长
///
public int Long { get; set; }
///
/// 宽
///
public int Wide { get; set; }
///
/// 高
///
public int High { get; set; }
///
/// 物料密度
///
public string MaterialDensity { get; set; }
///
/// 检验方式;数据字典
///
public MaterialInspection InspectionMethod { get; set; }
///
/// 单位类别;数据字典
///
public UnitType UnitType { get; set; }
///
/// 单位编号;数据字典
///
public UnitNoType UnitNo { get; set; }
///
/// 实物库存数
///
public decimal StockNumber { get; set; }
///
/// 库位编码
///
public string PlaceCode { get; set; }
///
/// 托盘Id
///
public long ContainerId { get; set; }
///
/// 托盘编码
///
public string ContainerCode { get; set; }
///
/// 库区Id
///
public long AreaId { get; set; }
///
/// 账面数量
///
public decimal QuantityOfBill { get; set; }
}
}