using Kean.Infrastructure.Configuration;
using System;
namespace Kean.Application.Query.ViewModels
{
///
/// 记录信息视图
///
public sealed class Record : MaterialProperty
{
///
/// 标识
///
public int? Id { get; set; }
///
/// 物料
///
public int? Material { get; set; }
///
/// 料号
///
public string Code { get; set; }
///
/// 物料名
///
public string Name { get; set; }
///
/// 品类
///
public string Category { get; set; }
///
/// 物料组
///
public string Group { get; set; }
///
/// 数量
///
public decimal? Quantity { get; set; }
///
/// 入库时间
///
public DateTime? InboundTime { get; set; }
///
/// 库龄
///
public int? InventoryAge { get; set; }
///
/// 货龄
///
public int? MaterialAge { get; set; }
///
/// 备注
///
public dynamic Remark { get; set; }
///
/// 事务
///
public string Transaction { get; set; }
///
/// 标签
///
public string Tag { get; set; }
///
/// 托盘条码
///
public string Barcode { get; set; }
///
/// 库房
///
public string Warehouse { get; set; }
///
/// 起始位置
///
public string Original { get; set; }
///
/// 目标位置
///
public string Destination { get; set; }
///
/// 开始时间
///
public DateTime? BeginTime { get; set; }
///
/// 完成时间
///
public DateTime? EndTime { get; set; }
///
/// 操作者
///
public string Operator { get; set; }
///
/// 账号
///
public string Account { get; set; }
///
/// 可用性
///
public bool? Enabled
{
get; set;
}
public string TransQty
{
get; set;
}
public string TransUnit
{
get; set;
}
///
/// 拉线
///
public string SlTarget
{
get; set;
}
///
/// 要料工单
///
public string OrderInfo
{
get; set;
}
}
}