Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdMoTask.part.cs
2023-11-06 19:35:59 +08:00

81 lines
2.3 KiB
C#

using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
///<summary>
///生产任务信息
///</summary>
public partial class PrdMoTask
{
/// <summary>
/// 设备类型编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string eqp_type_code { get; set; }
/// <summary>
/// 模具编号
/// </summary>
[SugarColumn(IsIgnore = true)]
public string mold_code { get; set; }
/// <summary>
/// 模具名称
/// </summary>
[SugarColumn(IsIgnore = true)]
public string mold_name { get; set; }
/// <summary>
/// 模具型腔数
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? mold_cavity_qty { get; set; }
/// <summary>
/// 任务计划数
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? icmo_qty { get; set; }
/// <summary>
/// 提报数
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? reported_qty { get; set; }
/// <summary>
/// 生产数量
/// </summary>
[SugarColumn(IsIgnore = true)]
public int? prd_qty { get; set; }
/// <summary>
/// 设备编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string eqp_code { get; set; }
/// <summary>
/// 物料编码
[SugarColumn(IsIgnore = true)]
public string material_code { get; set; }
/// <summary>
/// 物料名称
[SugarColumn(IsIgnore = true)]
public string material_name { get; set; }
/// <summary>
/// 物料属性
/// </summary>
[SugarColumn(IsIgnore = true)]
public string material_property { get; set; }
/// <summary>
/// 工序名称
/// </summary>
[SugarColumn(IsIgnore = true)]
public string process_name { get; set; }
/// <summary>
/// 工序编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string process_code { get; set; }
/// <summary>
/// 产线编码
/// </summary>
[SugarColumn(IsIgnore = true)]
public string workline_code { get; set; }
}
}