模具保养代码提交

This commit is contained in:
DEVICE8\12494
2023-05-18 08:52:54 +08:00
parent 4fa3124aea
commit 926d37924a
10 changed files with 100 additions and 97 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
public class BaseMoldMaintainInput
{
public string item_group_id { get; set; }
public List<string> ids { get; set; }
}
}