You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
420 B
19 lines
420 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Symptoms
|
|
{
|
|
public class UpdateManySortSymptomInputDto
|
|
{
|
|
/// <summary>
|
|
/// 需要修改的ID
|
|
/// </summary>
|
|
public Guid SymptomId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改方式:1 置顶 2 置底
|
|
/// </summary>
|
|
public int SortType { get; set; }
|
|
}
|
|
}
|