165 lines
4.1 KiB
C#
165 lines
4.1 KiB
C#
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-08-12 14:07:12
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.Collections.Generic;
|
|
namespace IRaCIS.Core.Application.ViewModel
|
|
{
|
|
|
|
public class CriterionNidusView
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public Guid CriterionId { get; set; }
|
|
public string NidusType { get; set; }
|
|
public string NidusTypeCN { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
}
|
|
|
|
///<summary>CriterionNidusQuery 列表查询参数模型</summary>
|
|
public class CriterionNidusQuery
|
|
{
|
|
|
|
public Guid CriterionId { get; set; }
|
|
}
|
|
|
|
///<summary> CriterionNidusAddOrEdit 列表查询参数模型</summary>
|
|
public class CriterionNidusAddOrEdit
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid CriterionId { get; set; }
|
|
public string NidusType { get; set; }
|
|
public string NidusTypeCN { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
}
|
|
public class BatchAddTrialOrganInDto
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
|
|
|
|
|
|
public List<Guid> OrganIds { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary> OrganInfoView 列表视图模型 </summary>
|
|
public class OrganInfoView
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Part { get; set; }
|
|
public string TULOC { get; set; }
|
|
public string TULAT { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 类型枚举
|
|
/// </summary>
|
|
public OrganType OrganType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否关联
|
|
/// </summary>
|
|
public IsDepend IsDepend { get; set; }
|
|
}
|
|
|
|
public class GetTrialSelectOrganListInDto
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
/// <summary>
|
|
/// 类型枚举
|
|
/// </summary>
|
|
public OrganType? OrganType { get; set; }
|
|
}
|
|
|
|
public class GetTrialOrganListInDto
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
|
|
public Guid? CriterionNidusId { get; set; }
|
|
|
|
public bool? IsEnable { get; set; }
|
|
}
|
|
|
|
public class GetTrialCheckOrganList : GetTrialOrganListOutDto
|
|
{
|
|
public bool IsCheckd { get; set; }
|
|
}
|
|
|
|
public class GetTrialOrganListOutDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Part { get; set; }
|
|
public string? TULOC { get; set; }
|
|
public string? TULAT { get; set; }
|
|
|
|
public Guid CriterionNidusId { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string? Remark { get; set; }
|
|
}
|
|
|
|
///<summary>OrganInfoQuery 列表查询参数模型</summary>
|
|
public class OrganInfoQuery
|
|
{
|
|
|
|
/// <summary>
|
|
/// 类型枚举
|
|
/// </summary>
|
|
public OrganType? OrganType { get; set; }
|
|
|
|
|
|
public Guid? CriterionNidusId { get; set; }
|
|
|
|
}
|
|
|
|
///<summary> OrganInfoAddOrEdit 列表查询参数模型</summary>
|
|
public class OrganInfoAddOrEdit
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public string Part { get; set; }
|
|
public string TULOC { get; set; }
|
|
public string TULAT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否是淋巴结
|
|
/// </summary>
|
|
public bool IsLymphNodes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标准 病灶类型
|
|
/// </summary>
|
|
public Guid CriterionNidusId { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|