21 lines
443 B
C#
21 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tnb.ProductionMgr.Entitys.Entity;
|
|
|
|
namespace Tnb.ProductionMgr.Entitys.Dto
|
|
{
|
|
/// <summary>
|
|
/// 模具列表输出参数
|
|
/// </summary>
|
|
public class MoldListOutput : Molds
|
|
{
|
|
/// <summary>
|
|
/// 产品 名称
|
|
/// </summary>
|
|
public string item_name { get; set; }
|
|
}
|
|
}
|