using AUCMA.STORE.Entity.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUCMA.STORE.Entity.DTO
{
///
/// 物料接口数据DTO
///
public class BaseMaterialDTO
{
///
/// 物料编码
///
public string materialCode { get; set; }
///
/// 物料名称
///
public string materialName { get; set; }
///
/// 物料类别
///
public string materialType { get; set; }
///
/// 物料尺寸
///
public decimal? materialSize { get; set; }
///
/// 物料高度
///
public decimal? materialHeigh { get; set; }
///
/// 物料重量
///
public decimal? materialWeight { get; set; }
///
/// 物料状态
///
public int materialStatus { get; set; }
///
/// 物料数量
///
public int materialCount { get; set; }
///
/// 入库区域
///
public LocationArea InStoreArea { get; set; }
}
}