using FreeSql.DataAnnotations; using System; namespace GroupLine.Model { /// /// G型C-D移栽 /// [Table(Name = "dbo.GCDTransplant")] [Index("IX_CreateTime", "CreateTime", false)] [Index("IX_CylinderNo", "CylinderNo", false)] public class GCDTransplant { /// /// Id /// [Column(IsIdentity = true)] public long Id { get; set; } /// /// 筒体编号 /// [Column(DbType = "nvarchar(20)")] public string CylinderNo { get; set; } /// /// 创建时间 /// [Column(DbType = "datetime DEFAULT(GETDATE())")] public DateTime CreateTime { get; set; } } }