模具组保养管理

This commit is contained in:
DEVICE8\12494
2023-05-17 18:31:22 +08:00
parent b12d91b48c
commit 4fa3124aea
2 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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 MoldMaintainDelInput : BaseInput
{
/// <summary>
/// 删除的表名
/// </summary>
public string table_name { get; set; }
}
}