69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由liquid模板自动生成 byzhouhang 20240909
|
|
// 生成时间 2026-03-10 06:17:31Z
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.Collections.Generic;
|
|
namespace IRaCIS.Core.Application.ViewModel;
|
|
|
|
public class SegmentationView : SegmentationAddOrEdit
|
|
{
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class SegmentationAddOrEdit
|
|
{
|
|
public Guid? Id { get; set; }
|
|
|
|
public string SEGUrl { get; set; }
|
|
|
|
public string SegmentationJson { get; set; }
|
|
|
|
public string SegmentationName { get; set; }
|
|
|
|
public Guid SeriesId { get; set; }
|
|
|
|
public Guid StudyId { get; set; }
|
|
|
|
public Guid SubjectId { get; set; }
|
|
|
|
public Guid SubjectVisitId { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public Guid VisitTaksId { get; set; }
|
|
}
|
|
|
|
public class SegmentationQuery:PageInput
|
|
{
|
|
public string? SEGUrl { get; set; }
|
|
|
|
public string? SegmentationJson { get; set; }
|
|
|
|
public string? SegmentationName { get; set; }
|
|
|
|
public Guid? SeriesId { get; set; }
|
|
|
|
public Guid? StudyId { get; set; }
|
|
|
|
public Guid? SubjectId { get; set; }
|
|
|
|
public Guid? SubjectVisitId { get; set; }
|
|
|
|
public Guid? TrialId { get; set; }
|
|
|
|
public Guid? VisitTaksId { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|