| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | 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{    /// <summary>    /// 倒推表 Dto    /// </summary>    public class InvertedListDto    {    }    /// <summary>    /// 倒推表 Dto    /// Create    /// </summary>    public class InvertedListCreateDto : PortDtoBase    {        /// <summary>        /// 团组Id         /// </summary>        public int DiId { get; set; }    }    /// <summary>    /// 倒推表 Dto    /// Update    /// </summary>    public class InvertedListUpdateDto : InvertedListInfoView    {        /// <summary>        /// 请求类型        /// </summary>        public int PortType { get; set; }    }    /// <summary>    /// 倒推表 Dto    /// File Download    /// </summary>    public class InvertedListFileDownloadDto : PortDtoBase    {        /// <summary>        /// 请求类型        /// </summary>        public int DiId { get; set; }    }}
 |