添加项目文件。

This commit is contained in:
2026-03-16 10:36:47 +08:00
parent aa2e0d4a45
commit 54b11c9c84
309 changed files with 41803 additions and 0 deletions

View File

@@ -0,0 +1,113 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace GroupLine.App.ModelDto
{
[MetadataType(typeof(PLowWeldDto))]
public class PLowWeldDto : 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 _CrankshaftNo;
/// <summary>
/// 曲轴编号
/// </summary>
public string CrankshaftNo
{
get { return _CrankshaftNo; }
set { _CrankshaftNo = value; RaisePropertyChanged(() => CrankshaftNo); }
}
private string _DownNo;
/// <summary>
/// 下部编号
/// </summary>
public string DownNo
{
get { return _DownNo; }
set { _DownNo = value; RaisePropertyChanged(() => DownNo); }
}
private string _DoCastNo;
/// <summary>
/// 下部铸件编号
/// </summary>
public string DoCastNo
{
get { return _DoCastNo; }
set { _DoCastNo = value; RaisePropertyChanged(() => DoCastNo); }
}
private decimal _StatorPressDep;
/// <summary>
/// 定子压入深度
/// </summary>
public decimal StatorPressDep
{
get { return _StatorPressDep; }
set { _StatorPressDep = value; RaisePropertyChanged(() => StatorPressDep); }
}
private decimal _RotorPressDep;
/// <summary>
/// 转子压入深度
/// </summary>
public decimal RotorPressDep
{
get { return _RotorPressDep; }
set { _RotorPressDep = value; RaisePropertyChanged(() => RotorPressDep); }
}
private string _FelerGgeResult;
/// <summary>
/// 塞尺检查OK
/// </summary>
public string FelerGgeResult
{
get { return _FelerGgeResult; }
set { _FelerGgeResult = value; RaisePropertyChanged(() => FelerGgeResult); }
}
private string _MagnetResult;
/// <summary>
/// 磁石检查OK)
/// </summary>
public string MagnetResult
{
get { return _MagnetResult; }
set { _MagnetResult = value; RaisePropertyChanged(() => MagnetResult); }
}
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); }
}
}
}