using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GroupLine.Model { /// /// KP型环焊机底部焊接 /// [Table(Name = "dbo.KPRingWeldMachDw")] [Index("IX_CreateTime", "CreateTime", false)] [Index("IX_CylinderNo", "CylinderNo", false)] public class KPRingWeldMachDw { /// /// Id /// [Column(IsIdentity = true)] public long Id { get; set; } /// /// 筒体编号 /// [Column(DbType = "nvarchar(20)")] public string CylinderNo { get; set; } /// /// 电压值1 /// [Column(DbType = "decimal(8, 2)")] public decimal Vol1 { get; set; } /// /// 电流值1 /// [Column(DbType = "int")] public int Cur1 { get; set; } /// /// 焊接时间1 /// [Column(DbType = "decimal(8, 2)")] public decimal WeldTime1 { get; set; } /// /// 电压值2 /// [Column(DbType = "decimal(8, 2)")] public decimal Vol2 { get; set; } /// /// 电流值2 /// [Column(DbType = "int")] public int Cur2 { get; set; } /// /// 焊接时间2 /// [Column(DbType = "decimal(8, 2)")] public decimal WeldTime2 { get; set; } /// /// 喷嘴清洁 /// [Column(DbType = "int")] public int NozzleClean { get; set; } /// /// 喷嘴更换 /// [Column(DbType = "int")] public int NozzleReplace { get; set; } /// /// 夹具 /// [Column(DbType = "nvarchar(5)")] public string Fixture { get; set; } /// /// 判定OK/NG /// [Column(DbType = "nvarchar(5)")] public string Result { get; set; } /// /// 创建时间 /// [Column(DbType = "datetime DEFAULT(GETDATE())")] public DateTime CreateTime { get; set; } } }