添加项目文件。
This commit is contained in:
124
GroupLine.Model/OverflowLeakMes.cs
Normal file
124
GroupLine.Model/OverflowLeakMes.cs
Normal file
@@ -0,0 +1,124 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 溢流阀安装泄露检查
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.OverflowLeakMes")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_StaticDiskNo", "StaticDiskNo", false)]
|
||||
public class OverflowLeakMes
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// 静盘编号
|
||||
///// </summary>
|
||||
//[Column(DbType = "nvarchar(10)")]
|
||||
//public string StaticDiskNo { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 机型
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(15)")]
|
||||
public string MachineCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 动盘编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string DynaDiskNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 静盘编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string StaticDiskNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 节拍
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal Cycle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 螺丝数量
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int ScrewCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OpNo { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 溢流阀扭矩
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal OverflowTorque { get; set; }
|
||||
/// <summary>
|
||||
/// 最终角度
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal FinalAngle { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 溢流阀扭矩2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal OverflowTorque2 { get; set; }
|
||||
/// <summary>
|
||||
/// 最终角度2
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal FinalAngle2 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 溢流阀扭矩3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal OverflowTorque3 { get; set; }
|
||||
/// <summary>
|
||||
/// 最终角度3
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal FinalAngle3 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 溢流阀扭矩4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal OverflowTorque4 { get; set; }
|
||||
/// <summary>
|
||||
/// 最终角度4
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal FinalAngle4 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 判定
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(5)")]
|
||||
public string Result { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user