新增设备更改
This commit is contained in:
116
GroupLine.Model/KPReliefValveAsm.cs
Normal file
116
GroupLine.Model/KPReliefValveAsm.cs
Normal file
@@ -0,0 +1,116 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// KP溢流阀组装机
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.KPReliefValveAsm")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_MvDiscNo", "MvDiscNo", false)]
|
||||
public class KPReliefValveAsm
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 机型
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string ModelName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 动盘编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string MvDiscNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 静盘编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string StDiscNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 节拍(S)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal CycleTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 螺丝数量(个)
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int ScrewCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 判定,0:OK,1:NG
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public int Result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩1(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度1(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩2(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度2(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩3(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度3(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩4(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度4(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string OperatorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user