Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/MoldListOutput.cs
DEVICE8\12494 32ab2c3411 1
2023-05-17 17:56:21 +08:00

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; }
}
}