Files
SCRGroupLine/GroupLine.Model/PLowWeld.cs
2026-03-16 10:36:47 +08:00

74 lines
2.0 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 FreeSql.DataAnnotations;
using System;
namespace GroupLine.Model
{
/// <summary>
/// 小P下部焊接
/// </summary>
[Table(Name = "dbo.PLowWeld")]
[Index("IX_CreateTime", "CreateTime", false)]
[Index("IX_CylinderNo", "CylinderNo", false)]
[Index("IX_CrankshaftNo", "CrankshaftNo", false)]
public class PLowWeld
{
/// <summary>
/// Id
/// </summary>
[Column(IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 筒体编号
/// </summary>
[Column(DbType = "nvarchar(20)")]
public string CylinderNo { get; set; }
/// <summary>
/// 曲轴编号
/// </summary>
[Column(DbType = "nvarchar(10)")]
public string CrankshaftNo { get; set; }
/// <summary>
/// 下部编号
/// </summary>
[Column(DbType = "nvarchar(10)")]
public string DownNo { get; set; }
/// <summary>
/// 下部铸件编号
/// </summary>
[Column(DbType = "nvarchar(10)")]
public string DoCastNo { get; set; }
/// <summary>
/// 定子压入深度
/// </summary>
[Column(DbType = "decimal(8, 2)")]
public decimal StatorPressDep { get; set; }
/// <summary>
/// 转子压入深度
/// </summary>
[Column(DbType = "decimal(8, 2)")]
public decimal RotorPressDep { get; set; }
/// <summary>
/// 塞尺检查OK
/// </summary>
[Column(DbType = "nvarchar(6)")]
public string FelerGgeResult { get; set; }
/// <summary>
/// 磁石检查OK)
/// </summary>
[Column(DbType = "nvarchar(6)")]
public string MagnetResult { get; set; }
/// <summary>
/// 员工编号
/// </summary>
[Column(DbType = "nvarchar(6)")]
public string OpNo { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Column(DbType = "datetime DEFAULT(GETDATE())")]
public DateTime CreateTime { get; set; }
}
}