using SqlSugar; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; namespace SlnMesnac.Model.domain { [SugarTable("prod_plan_detail"), TenantAttribute("mes")] [DataContract(Name = "ProdPLanDetail 员工信息")] public class ProdPlanDetail { /// /// /// [SugarColumn(ColumnName = "obj_id", IsPrimaryKey = true, IsIdentity = true)] public int ObjId { get; set; } /// /// 工单编号 /// [SugarColumn(ColumnName = "plan_code")] public string PlanCode { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "material_code")] public string MaterialCode { get; set; } /// /// 计划完成数 /// [SugarColumn(ColumnName = "plan_amount")] public string PlanAmount { get; set; } /// /// 实际完成数 /// [SugarColumn(ColumnName = "complete_amount")] public string CompleteAmount { get; set; } /// /// 开始时间 /// [SugarColumn(ColumnName = "begin_time")] public string BeginTime { get; set; } /// /// 结束时间 /// [SugarColumn(ColumnName = "end_time")] public string EndTime { get; set; } /// /// 当前班组长 /// [SugarColumn(ColumnName = "current_staff_id")] public string CurrentStaffId { get; set; } /// /// 下一班组长 /// [SugarColumn(ColumnName = "next_staff_id")] public string NextStaffId { get; set; } /// /// 结束标志 /// [SugarColumn(ColumnName = "end_flag")] public string EndFlag { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "created_by")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public string CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "updated_by")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public string UpdatedTime { get; set; } } }