first commit
This commit is contained in:
@@ -0,0 +1,174 @@
|
||||
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;
|
||||
/// <summary>
|
||||
/// 原纸卷标
|
||||
/// </summary>
|
||||
public string PaperLabel
|
||||
{
|
||||
get => _paperLabel;
|
||||
set => SetProperty(ref _paperLabel, 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 string _stockHouseName;
|
||||
/// <summary>
|
||||
/// 仓库名称
|
||||
/// </summary>
|
||||
public string StockHouseName
|
||||
{
|
||||
get => _stockHouseName;
|
||||
set => SetProperty(ref _stockHouseName, value);
|
||||
}
|
||||
|
||||
private string _stockInType;
|
||||
/// <summary>
|
||||
/// 入库类型
|
||||
/// </summary>
|
||||
public string StockInType
|
||||
{
|
||||
get => _stockHouseName;
|
||||
set => SetProperty(ref _stockHouseName, value);
|
||||
}
|
||||
|
||||
private string _locationMark;
|
||||
/// <summary>
|
||||
/// 库位
|
||||
/// </summary>
|
||||
public string LocationMark
|
||||
{
|
||||
get => _locationMark;
|
||||
set => SetProperty(ref _locationMark, 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 _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 _memo;
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Memo
|
||||
{
|
||||
get => _memo;
|
||||
set => SetProperty(ref _memo, value);
|
||||
}
|
||||
|
||||
private int _printState;
|
||||
/// <summary>
|
||||
/// 打印状态(0:未打印 1:已打印)
|
||||
/// </summary>
|
||||
public int PrintState
|
||||
{
|
||||
get => _printState;
|
||||
set => SetProperty(ref _printState, value);
|
||||
}
|
||||
|
||||
private DateTime? _printTime;
|
||||
/// <summary>
|
||||
/// 打印时间
|
||||
/// </summary>
|
||||
public DateTime? PrintTime
|
||||
{
|
||||
get => _printTime;
|
||||
set => SetProperty(ref _printTime, value);
|
||||
}
|
||||
|
||||
private DateTime? _creationTime;
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime? CreationTime
|
||||
{
|
||||
get => _creationTime;
|
||||
set => SetProperty(ref _creationTime, value);
|
||||
}
|
||||
|
||||
public DateTime? LastModifiedTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user