using SlnMesnac.Model.enums; using SqlSugar; using System; using System.Collections.Generic; using System.Text; #region << 版 本 注 释 >> /*-------------------------------------------------------------------- * 版权所有 (c) 2024 WenJY 保留所有权利。 * CLR版本:4.0.30319.42000 * 机器名称:LAPTOP-E0N2L34V * 命名空间:SlnMesnac.Model.domain * 唯一标识:15806f20-59dd-494f-90ed-add2b6f0a0a1 * * 创建者:WenJY * 电子邮箱:wenjy@mesnac.com * 创建时间:2024-04-07 16:55:41 * 版本:V1.0.0 * 描述: * *-------------------------------------------------------------------- * 修改人: * 时间: * 修改说明: * * 版本:V1.0.0 *--------------------------------------------------------------------*/ #endregion << 版 本 注 释 >> namespace SlnMesnac.Model.domain { /// /// 生产计划明细;车间生产派工 /// [SugarTable("mes_product_plan_detail")] public class MesProductPlanDetail { /// /// 主键标识 /// [SugarColumn(ColumnName = "plan_detail_id", IsPrimaryKey = true, IsIdentity = true)] public long PlanDetailId { get; set; } /// /// 明细编号 /// [SugarColumn(ColumnName = "plan_detail_code")] public string PlanDetailCode { get; set; } /// /// 生产计划ID /// [SugarColumn(ColumnName = "plan_id")] public long PlanId { get; set; } /// /// 计划编号, 关联mes_product_plan_info的plan_code /// [SugarColumn(ColumnName = "plan_code")] public string PlanCode { get; set; } /// /// 操作人员ID,关联sys_user的user_id /// [SugarColumn(ColumnName = "user_id")] public long? UserId { get; set; } /// /// 操作人员名称,关联sys_user的user_name /// [SugarColumn(ColumnName = "user_name")] public string UserName { get; set; } /// /// 开始时间 /// [SugarColumn(ColumnName = "real_begin_time")] public DateTime? RealBeginTime { get; set; } /// /// 完成时间 /// [SugarColumn(ColumnName = "real_end_time")] public DateTime? RealEndTime { get; set; } /// /// 文件ID,关联附件信息主键 /// [SugarColumn(ColumnName = "attach_id")] public int? AttachId { get; set; } /// /// 明细状态:1-未开始;2-已开始;3-已完成;9-异常完成 /// [SugarColumn(ColumnName = "plan_detail_status")] public string PlanDetailStatus { get; set; } /// /// 是否标识:1-是;0-否 /// [SugarColumn(ColumnName = "is_flag")] public string IsFlag { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "update_by")] public string UpdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } /// /// 物料条码 /// [SugarColumn(ColumnName = "material_barcode")] public string MaterialBarcode { get; set; } } }