using Prism.Mvvm;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
namespace JSMachine.WMS.App.Dto
{
public partial class PaperNewStockInDto : BindableBase, IRootDto
{
public Guid Id { get; set; }
private string _paperLabel;
///
/// 原纸卷标
///
public string PaperLabel
{
get => _paperLabel;
set => SetProperty(ref _paperLabel, value);
}
private string _productLineName;
///
/// 产线名称
///
public string ProductLineName
{
get => _productLineName;
set => SetProperty(ref _productLineName, value);
}
private string _supplier;
///
/// 供应商
///
public string Supplier
{
get => _supplier;
set => SetProperty(ref _supplier, value);
}
private string _makerName;
///
/// 制造商
///
public string MakerName
{
get => _makerName;
set => SetProperty(ref _makerName, value);
}
private string _stockHouseName;
///
/// 仓库名称
///
public string StockHouseName
{
get => _stockHouseName;
set => SetProperty(ref _stockHouseName, value);
}
private string _stockInType;
///
/// 入库类型
///
public string StockInType
{
get => _stockHouseName;
set => SetProperty(ref _stockHouseName, value);
}
private string _locationMark;
///
/// 库位
///
public string LocationMark
{
get => _locationMark;
set => SetProperty(ref _locationMark, value);
}
private int _paperUnitWeight;
///
/// 原纸克重
///
public int PaperUnitWeight
{
get => _paperUnitWeight;
set => SetProperty(ref _paperUnitWeight, value);
}
private string _paperCode;
///
/// 原纸编码(纸质)
///
public string PaperCode
{
get => _paperCode;
set => SetProperty(ref _paperCode, value);
}
private int _paperWidth;
///
/// 门幅
///
public int PaperWidth
{
get => _paperWidth;
set => SetProperty(ref _paperWidth, value);
}
private decimal _inWeight;
///
/// 入库重量
///
public decimal InWeight
{
get => _inWeight;
set => SetProperty(ref _inWeight, value);
}
private decimal _meterLength;
///
/// 米长
///
public decimal MeterLength
{
get => _meterLength;
set => SetProperty(ref _meterLength, value);
}
private string _memo;
///
/// 备注
///
public string Memo
{
get => _memo;
set => SetProperty(ref _memo, value);
}
private int _printState;
///
/// 打印状态(0:未打印 1:已打印)
///
public int PrintState
{
get => _printState;
set => SetProperty(ref _printState, value);
}
private DateTime? _printTime;
///
/// 打印时间
///
public DateTime? PrintTime
{
get => _printTime;
set => SetProperty(ref _printTime, value);
}
private DateTime? _creationTime;
///
/// 创建时间
///
public DateTime? CreationTime
{
get => _creationTime;
set => SetProperty(ref _creationTime, value);
}
public DateTime? LastModifiedTime { get; set; }
}
}