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 { public class VisaFeeDto { } public class VisaFeeListDto : PortDtoBase { public int DiId { get; set; } } public class VisaFeeAddAndUpdateDto : PortDtoBase { /// /// 操作状态 /// 1 添加 /// 2 修改 /// public int OpUserId { get; set; } public int DiId { get; set; } public List VisaFeeInfos { get; set; } } }