添加项目文件。

This commit is contained in:
2026-03-16 10:36:47 +08:00
parent aa2e0d4a45
commit 54b11c9c84
309 changed files with 41803 additions and 0 deletions

View File

@@ -0,0 +1,86 @@
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; }
}
}