using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.ProductionMgr.Entities;
namespace Tnb.ProductionMgr.Entities.Dto
{
///
/// 模具列表输出参数
///
public class MoldListOutput : Molds
{
///
/// 产品 名称
///
public string item_name { get; set; }
}
}