using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.Devices { public class UpdateManySortDeviceInputDto { /// /// 需要修改的ID /// public Guid DeviceId { get; set; } /// /// 修改方式:1 置顶 2 置底 /// public int SortType { get; set; } } }