namespace Tnb.EquipMgr.Entities.Dto
{
///
/// 保养计划模具列表输出参数
///
public class MaintainPlanMoldLstOutput
{
///
/// 模具Id
///
public string mold_id { get; set; }
///
/// 模具编码
///
public string? mold_code { get; set; }
///
/// 模具名称
///
public string? mold_name { get; set; }
///
/// 库房编码
///
public string? whcode { get; set; }
///
/// 库位编码
///
public string? location_code { get; set; }
}
}