Files
SCRGroupLine/GroupLine.App/ModelDto/PLowWeldDto.cs
2026-03-19 17:29:32 +08:00

135 lines
3.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 decimal _GapblockDepth;
/// <summary>
/// 间隙块深度
/// </summary>
public decimal GapblockDepth
{
get { return _GapblockDepth; }
set { _GapblockDepth = value; RaisePropertyChanged(() => GapblockDepth); }
}
private string _PalletNo;
/// <summary>
/// 托盘号
/// </summary>
public string PalletNo
{
get { return _PalletNo; }
set { _PalletNo = value; RaisePropertyChanged(() => PalletNo); }
}
private DateTime _CreateTime;
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime
{
get { return _CreateTime; }
set { _CreateTime = value; RaisePropertyChanged(() => CreateTime); }
}
}
}