新增设备更改
This commit is contained in:
44
GroupLine.Model/RotorShrinkFit.cs
Normal file
44
GroupLine.Model/RotorShrinkFit.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace GroupLine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 转子烧嵌
|
||||
/// </summary>
|
||||
[Table(Name = "dbo.RotorShrinkFit")]
|
||||
[Index("IX_CreateTime", "CreateTime", false)]
|
||||
[Index("IX_RotorNo", "RotorNo", false)]
|
||||
public class RotorShrinkFit
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[Column(IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 转子编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(16)")]
|
||||
public string RotorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支架编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(8)")]
|
||||
public string BracketNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工编号
|
||||
/// </summary>
|
||||
[Column(DbType = "nvarchar(6)")]
|
||||
public string OperatorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column(DbType = "datetime DEFAULT(GETDATE())")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user