You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.3 KiB
C#
122 lines
3.3 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "obj_id", IsPrimaryKey = true)]
|
|
public int ObjId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工单编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plan_code")]
|
|
public string PlanCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// ERP订单编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "order_code")]
|
|
public string OrderCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "material_code")]
|
|
public string MaterialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "material_name")]
|
|
public string MaterialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划工位
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "station_code")]
|
|
public string StationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划班组
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "team_code")]
|
|
public string TeamCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plan_amount")]
|
|
public string PlanAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "complete_amount")]
|
|
public string CompleteAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际开始时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "begin_time")]
|
|
public string BeginTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际完成时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "end_time")]
|
|
public string EndTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成标识
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "comp_flag")]
|
|
public string CompFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_by")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
public string CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_by")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
public string UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "device_code")]
|
|
public string DeviceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工单状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plan_status")]
|
|
public string PlanStatus { get; set; }
|
|
}
|
|
}
|