添加项目文件。
This commit is contained in:
57
GroupLine.Model/TermWeld.cs
Normal file
57
GroupLine.Model/TermWeld.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 端子凸焊
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.TermWeld")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
public class TermWeld
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 机种名
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string MachineModel { get; set; }
|
||||
/// <summary>
|
||||
/// 焊接工位
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int WeldStation { get; set; }
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OpNo { get; set; }
|
||||
/// <summary>
|
||||
/// 电流值
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal Cur { get; set; }
|
||||
/// <summary>
|
||||
/// 电极型号
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int ElectrodeModel { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 焊接时间
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8,2)")]
|
||||
public decimal WeldTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user