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.

68 lines
1.7 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
{
public class BaseLocationInfoDTO
{
/// <summary>
/// 库位编号
///</summary>
public string locationCode { get; set; }
/// <summary>
/// 库位名称
///</summary>
public string locationName { get; set; }
/// <summary>
/// 物料类别
///</summary>
public int materialType { get; set; }
/// <summary>
/// 所属仓库
///</summary>
public string storeCode { get; set; }
/// <summary>
/// 库位区域
///</summary>
public LocationArea locationArea { get; set; }
/// <summary>
/// 所处排
///</summary>
public int locationRow { get; set; }
/// <summary>
/// 所处列
///</summary>
public int locationLine { get; set; }
/// <summary>
/// 所处层
///</summary>
public int locationTier { get; set; }
/// <summary>
/// 库位状态
///</summary>
public LocationStatus locationStatus { get; set; }
/// <summary>
/// 执行效率
///</summary>
public decimal? efficiency { get; set; }
/// <summary>
/// 备注
///</summary>
public string remark { get; set; }
/// <summary>
/// 删除标志
///</summary>
public int deleteFlag { get; set; }
/// <summary>
/// 记录时间
///</summary>
public DateTime? recordTime { get; set; }
}
}