using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.Model.Model_New { /// /// 钣金任务完成表 /// [SugarTable("SM_RECORD", "AUCMA_SCADA")] public class SmRecord { /// /// 主键 /// [SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)] public int ObjId { get; set; } /// /// 计划编号 /// [SugarColumn(ColumnName = "PLAN_CODE")] public string PlanCode { get; set; } /// /// 工单编号 /// [SugarColumn(ColumnName = "ORDER_CODE")] public string OrderCode { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "COMPLETE_TIME")] public DateTime complete_time { get; set; } } }