新增设备更改
This commit is contained in:
@@ -44,6 +44,11 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="OilGuideMount.cs" />
|
||||
<Compile Include="RotorShrinkFit.cs" />
|
||||
<Compile Include="KPBarrelShrinkFit.cs" />
|
||||
<Compile Include="KPReliefValveAsm.cs" />
|
||||
<Compile Include="KPExhCoverSealTest.cs" />
|
||||
<Compile Include="KPRingWeldMachDw.cs" />
|
||||
<Compile Include="KPRingWeldMachUp.cs" />
|
||||
<Compile Include="KPShrinkTub.cs" />
|
||||
|
||||
50
GroupLine.Model/KPBarrelShrinkFit.cs
Normal file
50
GroupLine.Model/KPBarrelShrinkFit.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// KP型筒体烧嵌
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.KPBarrelShrinkFit")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_BarrelNo", "BarrelNo", false)]
|
||||
public class KPBarrelShrinkFit
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 筒体编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string BarrelNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 定子编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(16)")]
|
||||
public string StatorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(4)")]
|
||||
public string OperatorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 筒体温度(℃)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal BarrelTemp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
212
GroupLine.Model/KPExhCoverSealTest.cs
Normal file
212
GroupLine.Model/KPExhCoverSealTest.cs
Normal file
@@ -0,0 +1,212 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// KP排气盖板安装气密检测
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.KPExhCoverSealTest")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_MvDiscNo", "MvDiscNo", false)]
|
||||
public class KPExhCoverSealTest
|
||||
{
|
||||
/// <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(5)")]
|
||||
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>
|
||||
/// 最终扭矩5(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度5(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩6(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque6 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度6(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle6 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩7(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque7 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度7(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle7 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩8(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque8 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度8(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle8 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩9(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque9 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度9(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle9 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩10(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque10 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度10(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle10 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩11(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque11 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度11(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle11 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终扭矩12(N.M)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal FinalTorque12 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最终角度12(deg)
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,1)")]
|
||||
public decimal FinalAngle12 { 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; }
|
||||
}
|
||||
}
|
||||
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; }
|
||||
}
|
||||
}
|
||||
86
GroupLine.Model/OilGuideMount.cs
Normal file
86
GroupLine.Model/OilGuideMount.cs
Normal file
@@ -0,0 +1,86 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 导油板敲入
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.OilGuideMount")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_CrankshaftNo", "CrankshaftNo", false)]
|
||||
public class OilGuideMount
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 曲轴编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(9)")]
|
||||
public string CrankshaftNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支架编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string BracketNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支架铸件号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(4)")]
|
||||
public string BracketCastingNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OperatorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 放入时无磕碰,0:OK,1:NG
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public int PlaceNoDamage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 导油板,0:不做,1:OK
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int OilGuidePlate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 塞尺检测,0:不做,1:OK
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int FeelerGaugeCheck { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 埋塞,0:不做,1:OK
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int BuriedPlug { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 螺旋螺钉,0:不做,1:OK
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int HelicalScrew { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 气密检测,0:不做,1:OK
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int AirTightCheck { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -23,47 +23,62 @@ namespace GroupLine.Model
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string CylinderNo { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 曲轴编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string CrankshaftNo { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 下部编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string DownNo { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 下部铸件编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string DoCastNo { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 定子压入深度
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal StatorPressDep { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 转子压入深度
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal RotorPressDep { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 塞尺检查(OK)
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string FelerGgeResult { get; set; }
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// 磁石检查(OK)
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string MagnetResult { get; set; }
|
||||
/// <summary>
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OpNo { get; set; }
|
||||
/// <summary>
|
||||
|
||||
/// <summary>
|
||||
/// 间隙块深度
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal GapblockDepth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 托盘号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string PalletNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
|
||||
44
GroupLine.Model/RotorShrinkFit.cs
Normal file
44
GroupLine.Model/RotorShrinkFit.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 转子烧嵌
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.RotorShrinkFit")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_RotorNo", "RotorNo", false)]
|
||||
public class RotorShrinkFit
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 转子编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(16)")]
|
||||
public string RotorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支架编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string BracketNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OperatorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user