Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/ToolMoldInput.cs
2023-05-17 09:00:44 +08:00

21 lines
483 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 ToolMoldInput
{
public string mold { get; set; }
public string[] equipid { get; set; }
public string productid { get; set; }
public int real_cavity_qty { get; set; }
public string[] productids { get; set; }
public string[] molds { get; set; }
}
}