添加项目文件。
This commit is contained in:
162
GroupLine.Model/GSpotWeldMach.cs
Normal file
162
GroupLine.Model/GSpotWeldMach.cs
Normal file
@@ -0,0 +1,162 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// G型点焊机
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.GSpotWeldMach")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_CylinderNo", "CylinderNo", false)]
|
||||
public class GSpotWeldMach
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 筒体编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string CylinderNo { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R1-1
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR1_1 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R1-1
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR1_1 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R1-1
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR1_1 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R1-2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR1_2 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R1-2
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR1_2 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R1-2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR1_2 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R1-3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR1_3 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R1-3
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR1_3 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R1-3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR1_3 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R1-4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR1_4 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R1-4
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR1_4 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R1-4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR1_4 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R2-1
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR2_1 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R2-1
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR2_1 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R2-1
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR2_1 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R2-2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR2_2 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R2-2
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR2_2 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R2-2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR2_2 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R2-3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR2_3 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R2-3
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR2_3 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R2-3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR2_3 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压R2-4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal VolR2_4 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流R2-4
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int CurR2_4 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间R2-4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTimeR2_4 { get; set; }
|
||||
/// <summary>
|
||||
/// 喷嘴清洁
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int NozzleClean { get; set; }
|
||||
/// <summary>
|
||||
/// 喷嘴更换
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int NozzleReplace { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user