模具设备产品关联

This commit is contained in:
qianjiawei
2023-05-17 09:00:44 +08:00
parent 6e9d1169ce
commit 254504ab1d
10 changed files with 910 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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; }
}
}