using FreeSql.DataAnnotations; using System; namespace GroupLine.Model { /// /// G型油泵安装工位 /// [Table(Name = "dbo.GOilPumpInstall")] [Index("IX_CreateTime", "CreateTime", false)] [Index("IX_CylinderNo", "CylinderNo", false)] [Index("IX_OilPumpNo", "OilPumpNo", false)] public class GOilPumpInstall { /// /// Id /// [Column(IsIdentity = true)] public long Id { get; set; } /// /// 筒体编号 /// [Column(DbType = "nvarchar(20)")] public string CylinderNo { get; set; } /// /// 油泵编号 /// [Column(DbType = "nvarchar(20)")] public string OilPumpNo { get; set; } /// /// 员工编号 /// [Column(DbType = "nvarchar(6)")] public string OpNo { get; set; } /// /// 油泵磕伤确认 /// [Column(DbType = "int")] public int OilPmpBruRsult { get; set; } /// /// 是否是返修品 /// [Column(DbType = "int")] public int IsReturn { get; set; } /// /// 焊点外观 /// [Column(DbType = "int")] public int WeldSpotUI { get; set; } /// /// 结果 /// [Column(DbType = "nvarchar(5)")] public string Result { get; set; } /// /// 创建时间 /// [Column(DbType = "datetime DEFAULT(GETDATE())")] public DateTime CreateTime { get; set; } } }