修改一版

This commit is contained in:
he
2022-05-27 17:19:51 +08:00
parent f8958dfc21
commit 24aa7167b7
6 changed files with 210 additions and 0 deletions
@@ -0,0 +1,37 @@
using IRaCIS.Core.Domain.Share.Reading;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public class GetReadModuleDto
{
public Guid TrialId { get; set; }
}
public class GetReadModuleOutDto: ReadModule
{
public string SubjectCode { get; set; }
public string SiteCode { get; set; }
public Guid? SiteId { get; set; }
}
public class GetReadModuleDtoOut
{
public string SubjectCode { get; set; }
public string SiteCode { get; set; }
public Guid? SiteId { get; set; }
public Guid? SubjectId { get; set; }
public List<GetReadModuleOutDto> Data { get; set; }
}
}