添加项目文件。
This commit is contained in:
53
GroupLine.Model/GCylinderBurnEb.cs
Normal file
53
GroupLine.Model/GCylinderBurnEb.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// G型筒体烧嵌
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.GCylinderBurnEb")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_CylinderNo", "CylinderNo", false)]
|
||||
[Index("IX_StatoNo", "StatoNo", false)]
|
||||
public class GCylinderBurnEb
|
||||
{
|
||||
/// <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 = "nvarchar(20)")]
|
||||
public string StatoNo { get; set; }
|
||||
/// <summary>
|
||||
/// A托盘号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(10)")]
|
||||
public string ATrayNo { get; set; }
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OpNo { get; set; }
|
||||
/// <summary>
|
||||
/// 筒体温度
|
||||
/// </summary>
|
||||
[Column(DbType = "decimal(8, 2)")]
|
||||
public decimal CylinderTemp { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user