202 lines
5.2 KiB
C#
202 lines
5.2 KiB
C#
using JSMachine.WMS.App.Dto.Enum;
|
|||
|
|
using JSMachine.WMS.Domain.Entity.Enums;
|
||
|
|
using Prism.Mvvm;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.App.Dto
|
||
|
|
{
|
||
|
|
public partial class PaperStockOutDto : BindableBase, IRootDto
|
||
|
|
{
|
||
|
|
public Guid Id { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ACS中的Id
|
||
|
|
/// </summary>
|
||
|
|
public Guid AcsId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 结束状态
|
||
|
|
/// </summary>
|
||
|
|
public int FinishState { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 每批所包含的全部Id
|
||
|
|
/// </summary>
|
||
|
|
public string Ids { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 新卷残卷Id
|
||
|
|
/// </summary>
|
||
|
|
public Guid NewStockReStockID { get; set; }
|
||
|
|
|
||
|
|
private string _paperLable;
|
||
|
|
/// <summary>
|
||
|
|
/// 原纸卷标
|
||
|
|
/// </summary>
|
||
|
|
public string PaperLabel
|
||
|
|
{
|
||
|
|
get => _paperLable;
|
||
|
|
set => SetProperty(ref _paperLable, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
private string _productLineName;
|
||
|
|
/// <summary>
|
||
|
|
/// 产线名称
|
||
|
|
/// </summary>
|
||
|
|
public string ProductLineName
|
||
|
|
{
|
||
|
|
get => _productLineName;
|
||
|
|
set => SetProperty(ref _productLineName, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
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);
|
||
|
|
}
|
||
|
|
|
||
|
|
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 _outWeight;
|
||
|
|
/// <summary>
|
||
|
|
/// 出库重量
|
||
|
|
/// </summary>
|
||
|
|
public decimal OutWeight
|
||
|
|
{
|
||
|
|
get => _outWeight;
|
||
|
|
set => SetProperty(ref _outWeight, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
private string _stockHouseName;
|
||
|
|
/// <summary>
|
||
|
|
/// 仓库名称
|
||
|
|
/// </summary>
|
||
|
|
public string StockHouseName
|
||
|
|
{
|
||
|
|
get => _stockHouseName;
|
||
|
|
set => SetProperty(ref _stockHouseName, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 原纸出库类型
|
||
|
|
/// </summary>
|
||
|
|
public string StockOutType { get; set; }
|
||
|
|
|
||
|
|
private decimal _meterLength;
|
||
|
|
/// <summary>
|
||
|
|
/// 米长
|
||
|
|
/// </summary>
|
||
|
|
public decimal MeterLength
|
||
|
|
{
|
||
|
|
get => _meterLength;
|
||
|
|
set => SetProperty(ref _meterLength, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 机台
|
||
|
|
/// </summary>
|
||
|
|
public string MachineNum { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 库位
|
||
|
|
/// </summary>
|
||
|
|
public string LocationMark { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否在库(0:不在库 1:在库)
|
||
|
|
/// </summary>
|
||
|
|
public int InOutState { get; set; }
|
||
|
|
|
||
|
|
private string _memo;
|
||
|
|
/// <summary>
|
||
|
|
/// 备注
|
||
|
|
/// </summary>
|
||
|
|
public string Memo
|
||
|
|
{
|
||
|
|
get => _memo;
|
||
|
|
set => SetProperty(ref _memo, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 企望接口出库记录上传状态
|
||
|
|
/// </summary>
|
||
|
|
public WantitErpUploadStatus WantitErpUploadStatus { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 扫码信息来源
|
||
|
|
/// </summary>
|
||
|
|
public BarCodeSource BarCodeSource { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 需要的纸质(未代纸情况下此值和实际纸质相等,代纸情况下则不等)
|
||
|
|
/// </summary>
|
||
|
|
public string WantedPaperCode { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 需要的幅宽(未代纸情况下此值和实际幅宽相等,代纸情况下则不等)
|
||
|
|
/// </summary>
|
||
|
|
public int WantedPaperWidth { get; set; }
|
||
|
|
|
||
|
|
private DateTime? _creationTime;
|
||
|
|
/// <summary>
|
||
|
|
/// 创建时间
|
||
|
|
/// </summary>
|
||
|
|
public DateTime? CreationTime
|
||
|
|
{
|
||
|
|
get => _creationTime;
|
||
|
|
set => SetProperty(ref _creationTime, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
public DateTime? LastModifiedTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Erp接口调用成功,但是返回入库失败
|
||
|
|
/// </summary>
|
||
|
|
public string ErpStockInMsg { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 备纸错误状态(0:正常 1:错误)
|
||
|
|
/// </summary>
|
||
|
|
public PreparationErrorStateEnum PreparationErrorState { get; set; }
|
||
|
|
}
|
||
|
|
}
|