183 lines
4.6 KiB
C#
183 lines
4.6 KiB
C#
using JSMachine.WMS.App.Dto.Enum;
|
|
using Prism.Mvvm;
|
|
|
|
namespace JSMachine.WMS.App.Dto
|
|
{
|
|
public partial class PaperReStockInDto : BindableBase, IRootDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
private string _paperLabel;
|
|
/// <summary>
|
|
/// 原纸卷标
|
|
/// </summary>
|
|
public string PaperLabel
|
|
{
|
|
get => _paperLabel;
|
|
set => SetProperty(ref _paperLabel, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 产线名称
|
|
/// </summary>
|
|
public string ProductLineName { get; set; }
|
|
|
|
private string _supplier;
|
|
/// <summary>
|
|
/// 供应商
|
|
/// </summary>
|
|
public string Supplier
|
|
{
|
|
get => _supplier;
|
|
set => SetProperty(ref _supplier, value);
|
|
}
|
|
|
|
private string _makerName;
|
|
/// <summary>
|
|
/// 制造商
|
|
/// </summary>
|
|
public string MakerName
|
|
{
|
|
get => _makerName;
|
|
set => SetProperty(ref _makerName, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 仓库名称
|
|
/// </summary>
|
|
public string _stockHouseName;
|
|
public string StockHouseName
|
|
{
|
|
get => _stockHouseName;
|
|
set => SetProperty(ref _stockHouseName, value);
|
|
}
|
|
|
|
private string _locationMark;
|
|
/// <summary>
|
|
/// 库位
|
|
/// </summary>
|
|
public string LocationMark
|
|
{
|
|
get => _locationMark;
|
|
set => SetProperty(ref _locationMark, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 入库类型
|
|
/// </summary>
|
|
public string StockInType { get; set; }
|
|
|
|
private int _paperUnitWeight;
|
|
/// <summary>
|
|
/// 原纸克重
|
|
/// </summary>
|
|
public int PaperUnitWeight
|
|
{
|
|
get => _paperUnitWeight;
|
|
set => SetProperty(ref _paperUnitWeight, value);
|
|
}
|
|
|
|
private string _paperCode;
|
|
/// <summary>
|
|
/// 原纸编码(纸质)
|
|
/// </summary>
|
|
public string PaperCode
|
|
{
|
|
get => _paperCode;
|
|
set => SetProperty(ref _paperCode, value);
|
|
}
|
|
|
|
private int _paperWidth;
|
|
/// <summary>
|
|
/// 门幅
|
|
/// </summary>
|
|
public int PaperWidth
|
|
{
|
|
get => _paperWidth;
|
|
set => SetProperty(ref _paperWidth, value);
|
|
}
|
|
|
|
private decimal _inWeight;
|
|
/// <summary>
|
|
/// 入库重量
|
|
/// </summary>
|
|
public decimal InWeight
|
|
{
|
|
get=> _inWeight;
|
|
set => SetProperty(ref _inWeight, value);
|
|
}
|
|
|
|
private decimal _meterLength;
|
|
/// <summary>
|
|
/// 米长
|
|
/// </summary>
|
|
public decimal MeterLength
|
|
{
|
|
get => _meterLength;
|
|
set => SetProperty(ref _meterLength, value);
|
|
}
|
|
|
|
private string _teamName;
|
|
/// <summary>
|
|
/// 班组
|
|
/// </summary>
|
|
public string TeamName
|
|
{
|
|
get => _teamName;
|
|
set => SetProperty(ref _teamName, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 批次Id
|
|
/// </summary>
|
|
public Guid? BathId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Memo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印时间
|
|
/// </summary>
|
|
public DateTime? PrintTime { get; set; }
|
|
|
|
private DateTime? _creationTime;
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime? CreationTime
|
|
{
|
|
get => _creationTime;
|
|
set => SetProperty(ref _creationTime, value);
|
|
}
|
|
|
|
public DateTime? LastModifiedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 来源
|
|
/// </summary>
|
|
public ReStockInOriginEnum Origin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 企望接口入库记录上传状态
|
|
/// 0-等待上传,
|
|
///1-上传成功,
|
|
///2-上传失败
|
|
///3-接口请求成功但数据被ERP拒收(可能是数据不符合ERP要求,但接口已经请求成功,此种情况系统仅做记录不处理)
|
|
/// </summary>
|
|
public WantitErpUploadStatus WantitErpUploadStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 信息来源(0-扫码器扫描 1-手持PDA上传)
|
|
/// </summary>
|
|
public BarCodeSource BarCodeSource { get; set; }
|
|
|
|
/// <summary>
|
|
/// Erp接口调用成功,但是返回入库失败
|
|
/// </summary>
|
|
public string ErpStockInMsg { get; set; }
|
|
}
|
|
|
|
}
|