Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdMoTask.part.cs
2023-05-25 22:51:56 +08:00

75 lines
2.0 KiB
C#

using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
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_work_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; }
}
}