87 lines
2.4 KiB
C#
87 lines
2.4 KiB
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GroupLine.Model
|
|
{
|
|
/// <summary>
|
|
/// KP型环焊机底部焊接
|
|
/// </summary>
|
|
[Table(Name = "dbo.KPRingWeldMachDw")]
|
|
[Index("IX_CreateTime", "CreateTime", false)]
|
|
[Index("IX_CylinderNo", "CylinderNo", false)]
|
|
public class KPRingWeldMachDw
|
|
{
|
|
/// <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>
|
|
/// 喷嘴清洁
|
|
/// </summary>
|
|
[Column(DbType = "int")]
|
|
public int NozzleClean { get; set; }
|
|
/// <summary>
|
|
/// 喷嘴更换
|
|
/// </summary>
|
|
[Column(DbType = "int")]
|
|
public int NozzleReplace { get; set; }
|
|
/// <summary>
|
|
/// 夹具
|
|
/// </summary>
|
|
[Column(DbType = "nvarchar(5)")]
|
|
public string Fixture { get; set; }
|
|
/// <summary>
|
|
/// 判定OK/NG
|
|
/// </summary>
|
|
[Column(DbType = "nvarchar(5)")]
|
|
public string Result { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
}
|
|
}
|