添加项目文件。
This commit is contained in:
53
GroupLine.Model/StaticDiscPress.cs
Normal file
53
GroupLine.Model/StaticDiscPress.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 静盘注液阀压入
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.StaticDiscPress")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_StaticDiskNo", "StaticDiskNo", false)]
|
||||
public class StaticDiscPress
|
||||
{
|
||||
/// <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(6)")]
|
||||
public string OpNo { get; set; }
|
||||
/// <summary>
|
||||
/// 压力值
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal PressValue { get; set; }
|
||||
/// <summary>
|
||||
/// 压入深度
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal PressDepth { get; set; }
|
||||
/// <summary>
|
||||
/// 压入工位
|
||||
/// </summary>
|
||||
[Column(DbType = "int")]
|
||||
public int PressStation { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user