添加项目文件。
This commit is contained in:
137
GroupLine.App/ModelDto/KPDynStaticMachDto.cs
Normal file
137
GroupLine.App/ModelDto/KPDynStaticMachDto.cs
Normal file
@@ -0,0 +1,137 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace GroupLine.App.ModelDto
|
||||
{
|
||||
[MetadataType(typeof(KPDynStaticMachDto))]
|
||||
public class KPDynStaticMachDto : 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 _DynaDiskNo;
|
||||
/// <summary>
|
||||
/// 动盘编号
|
||||
/// </summary>
|
||||
public string DynaDiskNo
|
||||
{
|
||||
get { return _DynaDiskNo; }
|
||||
set { _DynaDiskNo = value; RaisePropertyChanged(() => DynaDiskNo); }
|
||||
}
|
||||
private string _StaticDiskNo;
|
||||
/// <summary>
|
||||
/// 静盘编号
|
||||
/// </summary>
|
||||
public string StaticDiskNo
|
||||
{
|
||||
get { return _StaticDiskNo; }
|
||||
set { _StaticDiskNo = value; RaisePropertyChanged(() => StaticDiskNo); }
|
||||
}
|
||||
private string _EuropMacine;
|
||||
/// <summary>
|
||||
/// 欧式机构
|
||||
/// </summary>
|
||||
public string EuropMacine
|
||||
{
|
||||
get { return _EuropMacine; }
|
||||
set { _EuropMacine = value; RaisePropertyChanged(() => EuropMacine); }
|
||||
}
|
||||
private string _StaDskCastNo;
|
||||
/// <summary>
|
||||
/// 静盘铸件号
|
||||
/// </summary>
|
||||
public string StaDskCastNo
|
||||
{
|
||||
get { return _StaDskCastNo; }
|
||||
set { _StaDskCastNo = value; RaisePropertyChanged(() => StaDskCastNo); }
|
||||
}
|
||||
|
||||
private string _MeterGap;
|
||||
/// <summary>
|
||||
/// 间隙值 玛仪器测量
|
||||
/// </summary>
|
||||
public string MeterGap
|
||||
{
|
||||
get { return _MeterGap; }
|
||||
set { _MeterGap = value; RaisePropertyChanged(() => MeterGap); }
|
||||
}
|
||||
|
||||
|
||||
private string _MeterGroup;
|
||||
/// <summary>
|
||||
/// 分组 玛仪器测量
|
||||
/// </summary>
|
||||
public string MeterGroup
|
||||
{
|
||||
get { return _MeterGroup; }
|
||||
set { _MeterGroup = value; RaisePropertyChanged(() => MeterGroup); }
|
||||
}
|
||||
|
||||
|
||||
private string _MeterResult;
|
||||
/// <summary>
|
||||
/// 结论 玛仪器测量
|
||||
/// </summary>
|
||||
public string MeterResult
|
||||
{
|
||||
get { return _MeterResult; }
|
||||
set { _MeterResult = value; RaisePropertyChanged(() => MeterResult); }
|
||||
}
|
||||
|
||||
private string _OpNo;
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
public string OpNo
|
||||
{
|
||||
get { return _OpNo; }
|
||||
set { _OpNo = value; RaisePropertyChanged(() => OpNo); }
|
||||
}
|
||||
//private decimal _Torque;
|
||||
// /// <summary>
|
||||
// /// 扭矩值
|
||||
// /// </summary>
|
||||
// public decimal Torque
|
||||
// {
|
||||
// get { return _Torque; }
|
||||
// set { _Torque = value; RaisePropertyChanged(() => Torque); }
|
||||
// }
|
||||
private string _EuopMaDifValue;
|
||||
/// <summary>
|
||||
/// 欧式机构段差值
|
||||
/// </summary>
|
||||
public string EuopMaDifValue
|
||||
{
|
||||
get { return _EuopMaDifValue; }
|
||||
set { _EuopMaDifValue = value; RaisePropertyChanged(() => EuopMaDifValue); }
|
||||
}
|
||||
private DateTime _CreateTime;
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime CreateTime
|
||||
{
|
||||
get { return _CreateTime; }
|
||||
set { _CreateTime = value; RaisePropertyChanged(() => CreateTime); }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user