添加项目文件。
This commit is contained in:
79
GroupLine.App/ModelDto/KPShrinkTubDto.cs
Normal file
79
GroupLine.App/ModelDto/KPShrinkTubDto.cs
Normal file
@@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GroupLine.App.ModelDto
|
||||
{
|
||||
[MetadataType(typeof(KPShrinkTubDto))]
|
||||
public class KPShrinkTubDto : 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 _OpNo;
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
public string OpNo
|
||||
{
|
||||
get { return _OpNo; }
|
||||
set { _OpNo = value; RaisePropertyChanged(() => OpNo); }
|
||||
}
|
||||
private decimal _FinalLoad;
|
||||
/// <summary>
|
||||
/// 终负荷
|
||||
/// </summary>
|
||||
public decimal FinalLoad
|
||||
{
|
||||
get { return _FinalLoad; }
|
||||
set { _FinalLoad = value; RaisePropertyChanged(() => FinalLoad); }
|
||||
}
|
||||
private decimal _FinalLocation;
|
||||
/// <summary>
|
||||
/// 终位置
|
||||
/// </summary>
|
||||
public decimal FinalLocation
|
||||
{
|
||||
get { return _FinalLocation; }
|
||||
set { _FinalLocation = value; RaisePropertyChanged(() => FinalLocation); }
|
||||
}
|
||||
private string _Result;
|
||||
/// <summary>
|
||||
/// 判定
|
||||
/// </summary>
|
||||
public string Result
|
||||
{
|
||||
get { return _Result; }
|
||||
set { _Result = value; RaisePropertyChanged(() => Result); }
|
||||
}
|
||||
private DateTime _CreateTime;
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime CreateTime
|
||||
{
|
||||
get { return _CreateTime; }
|
||||
set { _CreateTime = value; RaisePropertyChanged(() => CreateTime); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user