添加项目文件。
This commit is contained in:
77
GroupLine.App/ModelDto/PRacktPressDto.cs
Normal file
77
GroupLine.App/ModelDto/PRacktPressDto.cs
Normal file
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace GroupLine.App.ModelDto
|
||||
{
|
||||
[MetadataType(typeof(PRacktPressDto))]
|
||||
public class PRacktPressDto : ValidateModelBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
private long _Id;
|
||||
public long Id
|
||||
{
|
||||
get { return _Id; }
|
||||
set { _Id = value; RaisePropertyChanged(() => Id); }
|
||||
}
|
||||
|
||||
private string _CylinderNo;
|
||||
/// <summary>
|
||||
/// 筒体编号
|
||||
/// </summary>
|
||||
public string CylinderNo
|
||||
{
|
||||
get { return _CylinderNo; }
|
||||
set { _CylinderNo = value; RaisePropertyChanged(() => CylinderNo); }
|
||||
}
|
||||
private string _RacktNo;
|
||||
/// <summary>
|
||||
/// 支架编号
|
||||
/// </summary>
|
||||
public string RacktNo
|
||||
{
|
||||
get { return _RacktNo; }
|
||||
set { _RacktNo = value; RaisePropertyChanged(() => RacktNo); }
|
||||
}
|
||||
private decimal _PressValue;
|
||||
/// <summary>
|
||||
/// 压入压力
|
||||
/// </summary>
|
||||
public decimal PressValue
|
||||
{
|
||||
get { return _PressValue; }
|
||||
set { _PressValue = value; RaisePropertyChanged(() => PressValue); }
|
||||
}
|
||||
private string _TrayNo;
|
||||
/// <summary>
|
||||
/// 托盘编号
|
||||
/// </summary>
|
||||
public string TrayNo
|
||||
{
|
||||
get { return _TrayNo; }
|
||||
set { _TrayNo = value; RaisePropertyChanged(() => TrayNo); }
|
||||
}
|
||||
private string _OpNo;
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
public string OpNo
|
||||
{
|
||||
get { return _OpNo; }
|
||||
set { _OpNo = value; RaisePropertyChanged(() => OpNo); }
|
||||
}
|
||||
private DateTime _CreateTime;
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime CreateTime
|
||||
{
|
||||
get { return _CreateTime; }
|
||||
set { _CreateTime = value; RaisePropertyChanged(() => CreateTime); }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user