using SqlSugar;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace SlnMesnac.Model.domain
{
[SugarTable("prod_plan_info"), TenantAttribute("mes")]
[DataContract(Name = "ProdPLanInfo 员工信息")]
public class ProdPLanInfo
{
///
///
///
[SugarColumn(ColumnName = "obj_id", IsPrimaryKey = true)]
public int ObjId { get; set; }
///
/// 工单编号
///
[SugarColumn(ColumnName = "plan_code")]
public string PlanCode { get; set; }
///
/// ERP订单编号
///
[SugarColumn(ColumnName = "order_code")]
public string OrderCode { get; set; }
///
/// 物料编号
///
[SugarColumn(ColumnName = "material_code")]
public string MaterialCode { get; set; }
///
/// 物料名称
///
[SugarColumn(ColumnName = "material_name")]
public string MaterialName { get; set; }
///
/// 计划工位
///
[SugarColumn(ColumnName = "station_code")]
public string StationCode { get; set; }
///
/// 计划班组
///
[SugarColumn(ColumnName = "team_code")]
public string TeamCode { 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 = "comp_flag")]
public string CompFlag { 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 = "device_code")]
public string DeviceCode { get; set; }
}
}