28 lines
663 B
C#
28 lines
663 B
C#
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; }
|
|
/// <summary>
|
|
/// Desc:模具编号
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string mold_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:模具名称
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string mold_name { get; set; }
|
|
|
|
}
|
|
}
|