You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 物料接口数据DTO
|
|
/// </summary>
|
|
public class BaseMaterialDTO
|
|
{
|
|
/// <summary>
|
|
/// 物料编码
|
|
///</summary>
|
|
public string materialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料名称
|
|
///</summary>
|
|
public string materialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料类别
|
|
///</summary>
|
|
public string materialType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料尺寸
|
|
///</summary>
|
|
public decimal? materialSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料高度
|
|
///</summary>
|
|
public decimal? materialHeigh { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料重量
|
|
///</summary>
|
|
public decimal? materialWeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料状态
|
|
///</summary>
|
|
public int materialStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料数量
|
|
/// </summary>
|
|
public int materialCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入库区域
|
|
/// </summary>
|
|
public LocationArea InStoreArea { get; set; }
|
|
}
|
|
}
|