This commit is contained in:
DEVICE8\12494
2023-05-17 17:56:21 +08:00
parent 8971b48984
commit 32ab2c3411
7 changed files with 81 additions and 26 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 BaseInput
{
public string item_group_id { get; set; }
public List<string> ids { get; set; }
}
}