20 lines
424 B
C#
20 lines
424 B
C#
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 : BaseMoldMaintainInput
|
|
{
|
|
/// <summary>
|
|
/// 删除的表名
|
|
/// </summary>
|
|
public string table_name { get; set; }
|
|
}
|
|
}
|