using OASystem.Domain.ViewModels.Groups; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { /// /// 倒推表 Dto /// public class InvertedListDto { } /// /// 倒推表 Dto /// Create /// public class InvertedListCreateDto : PortDtoBase { /// /// 团组Id /// public int DiId { get; set; } } /// /// 倒推表 Dto /// Update /// public class InvertedListUpdateDto : InvertedListInfoView { /// /// 请求类型 /// public int PortType { get; set; } } /// /// 倒推表 Dto /// File Download /// public class InvertedListFileDownloadDto : PortDtoBase { /// /// 请求类型 /// public int DiId { get; set; } } }