using FreeSql.DataAnnotations;
using System;
namespace GroupLine.Model
{
///
/// 转子烧嵌
///
[Table(Name = "dbo.RotorShrinkFit")]
[Index("IX_CreateTime", "CreateTime", false)]
[Index("IX_RotorNo", "RotorNo", false)]
public class RotorShrinkFit
{
///
/// Id
///
[Column(IsIdentity = true)]
public long Id { get; set; }
///
/// 转子编号
///
[Column(DbType = "nvarchar(16)")]
public string RotorNo { get; set; }
///
/// 支架编号
///
[Column(DbType = "nvarchar(8)")]
public string BracketNo { get; set; }
///
/// 员工编号
///
[Column(DbType = "nvarchar(6)")]
public string OperatorNo { get; set; }
///
/// 创建时间
///
[Column(DbType = "datetime DEFAULT(GETDATE())")]
public DateTime CreateTime { get; set; }
}
}