添加项目文件。
This commit is contained in:
52
GroupLine.Model/GLeakCheck.cs
Normal file
52
GroupLine.Model/GLeakCheck.cs
Normal file
@@ -0,0 +1,52 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// G型高低压泄露检查
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.GLeakCheck")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_CylinderNo", "CylinderNo", false)]
|
||||
public class GLeakCheck
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 筒体编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string CylinderNo { get; set; }
|
||||
/// <summary>
|
||||
/// 抽真空值
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal PumpVacuum { get; set; }
|
||||
/// <summary>
|
||||
/// 保持真空值
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal KeepVacuum { get; set; }
|
||||
/// <summary>
|
||||
/// 抽真空值判定
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(5)")]
|
||||
public string PumpVamResult { get; set; }
|
||||
/// <summary>
|
||||
/// 保持真空值判定
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(5)")]
|
||||
public string KeepVamResult { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user