using SqlSugar;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace SlnMesnac.Model.domain
{
[SugarTable("prod_plan_execute_user"), TenantAttribute("mes")]
[DataContract(Name = "ProdPlanExecuteUser 员工信息")]
public class ProdPlanExecuteUser
{
///
///
///
[SugarColumn(ColumnName = "obj_id", IsPrimaryKey = true, IsIdentity = true)]
public int ObjId { get; set; }
///
/// 订单编号
///
[SugarColumn(ColumnName = "order_code")]
public string OrderCode { get; set; }
///
/// 工单编号
///
[SugarColumn(ColumnName = "plan_code")]
public string PlanCode { get; set;}
///
/// 工序编号
///
[SugarColumn(ColumnName = "process_code")]
public string ProcessCode { get; set; }
///
/// 工位编号
///
[SugarColumn(ColumnName = "station_code")]
public string StationCode { get; set; }
///
/// 员工编号
///
[SugarColumn(ColumnName = "staff_id")]
public string StaffId { get; set; }
///
/// 完成数量
///
[SugarColumn(ColumnName = "complete_amount")]
public string CompleteAmount { get; set; }
///
/// 工单明细开始时间
///
[SugarColumn(ColumnName = "plan_begin_date")]
public string PlanBeginDate { get; set; }
///
/// 工单明细结束时间
///
[SugarColumn(ColumnName = "plan_end_date")]
public string PlanEndDate { 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; }
///
/// 批次号锅数
///
[SugarColumn(ColumnName = "batch_number")]
public int BatchNumber { get; set; }
///
/// 下班时间
///
[SugarColumn(ColumnName = "off_work_time")]
public string OffWorkTime { get; set; }
}
}