模具物料关联

This commit is contained in:
qianjiawei
2023-05-17 16:52:55 +08:00
parent 8971b48984
commit 3978cc9e3a
7 changed files with 412 additions and 67 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
/// <summary>
/// 物料列表输出类
/// </summary>
public class MaterialListOutput
{
public string id { get; set; }
public string code { get; set; }
public string name { get; set; }
public string material_group { get; set; }
public int real_cavity_qty { get; set; }
}
/// <summary>
/// 模具列表输出类
/// </summary>
public class MoldListOutput
{
public string id { get; set; }
public string mold_code { get; set; }
public string mold_name { get; set; }
public int cavity_qty { get; set; }
public int real_cavity_qty { get; set; }
}
}