using System; using System.ComponentModel.DataAnnotations; using Model.Base; namespace Dto.Admin { /// /// 添加 /// public class GetServerListByIdsDto { /// /// 服务器ID /// public string serverIdList { get; set; } } }