Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/MaintainPlanMoldLstOutput.cs
2023-05-21 21:03:45 +08:00

37 lines
906 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NPOI.HSSF.Record.Chart;
namespace Tnb.EquipMgr.Entities.Dto
{
/// <summary>
/// 保养计划模具列表输出参数
/// </summary>
public class MaintainPlanMoldLstOutput
{
/// <summary>
/// 模具Id
/// </summary>
public string mold_id { get; set; }
/// <summary>
/// 模具编码
/// </summary>
public string? mold_code { get; set; }
/// <summary>
/// 模具名称
/// </summary>
public string? mold_name { get; set; }
/// <summary>
/// 库房编码
/// </summary>
public string? whcode { get; set; }
/// <summary>
/// 库位编码
/// </summary>
public string? location_code { get; set; }
}
}