3 changed files with 102 additions and 0 deletions
-
25src/Shentun.Peis.Application.Contracts/RegisterCheckItems/GetItemTwoHistoricalResultsDto.cs
-
20src/Shentun.Peis.Application.Contracts/RegisterCheckItems/GetItemTwoHistoricalResultsInputDto.cs
-
57src/Shentun.Peis.Application/RegisterCheckItems/RegisterCheckItemAppService.cs
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckItems |
|||
{ |
|||
public class GetItemTwoHistoricalResultsDto |
|||
{ |
|||
/// <summary>
|
|||
/// 检查日期
|
|||
/// </summary>
|
|||
public string CheckDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目名称
|
|||
/// </summary>
|
|||
public string ItemName { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 项目结果
|
|||
/// </summary>
|
|||
public string ItemResult { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckItems |
|||
{ |
|||
public class GetItemTwoHistoricalResultsInputDto |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 检查ID
|
|||
/// </summary>
|
|||
public Guid RegisterCheckId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目ID
|
|||
/// </summary>
|
|||
public Guid ItemId { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue