using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
public class RelevanceMoldListOutput
{
public string mold_id { get; set; }
///
/// Desc:模具编号
/// Default:NULL::character varying
/// Nullable:True
///
public string mold_code { get; set; }
///
/// Desc:模具名称
/// Default:NULL::character varying
/// Nullable:True
///
public string mold_name { get; set; }
}
}