添加项目文件。
This commit is contained in:
132
GroupLine.Model/KPSpotWeldMach.cs
Normal file
132
GroupLine.Model/KPSpotWeldMach.cs
Normal file
@@ -0,0 +1,132 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// K/P点焊机
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.KPSpotWeldMach")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_CylinderNo", "CylinderNo", false)]
|
||||
public class KPSpotWeldMach
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 筒体编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string CylinderNo { get; set; }
|
||||
/// <summary>
|
||||
/// 电压1
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Vol1 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流1
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int Cur1 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间1
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTime1 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Vol2 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流2
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int Cur2 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTime2 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Vol3 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流3
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int Cur3 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTime3 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Vol4 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流4
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int Cur4 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTime4 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压5
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Vol5 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流5
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int Cur5 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间5
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTime5 { get; set; }
|
||||
/// <summary>
|
||||
/// 电压6
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Vol6 { get; set; }
|
||||
/// <summary>
|
||||
/// 电流6
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int Cur6 { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接时间6
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal WeldTime6 { 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