添加项目文件。
This commit is contained in:
43
GroupLine.Model/GRotorBurnEb.cs
Normal file
43
GroupLine.Model/GRotorBurnEb.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// G型转子烧嵌
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.GRotorBurnEb")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_RotorNo", "RotorNo", false)]
|
||||
[Index("IX_CrankshaftNo", "CrankshaftNo", false)]
|
||||
public class GRotorBurnEb
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 转子编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string RotorNo { get; set; }
|
||||
/// <summary>
|
||||
/// 曲轴编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(20)")]
|
||||
public string CrankshaftNo { get; set; }
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OpNo { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user