14 lines
233 B
C#
Raw Normal View History

2025-11-11 09:20:17 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Basic.Web.WMS.Dto
{
public class IdsInput
{
public int[] Ids { get; set; }
}
}