57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由liquid模板自动生成 byzhouhang 20240909
|
|
// 生成时间 2026-03-19 07:13:41Z
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.Collections.Generic;
|
|
namespace IRaCIS.Core.Application.ViewModel;
|
|
|
|
public class SegmentBindingView : SegmentBindingAddOrEdit
|
|
{
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class SegmentBindingAddOrEdit
|
|
{
|
|
public Guid? Id { get; set; }
|
|
|
|
public Guid? QuestionId { get; set; }
|
|
|
|
public Guid? RowId { get; set; }
|
|
|
|
public Guid SegmentId { get; set; }
|
|
|
|
public Guid SegmentationId { get; set; }
|
|
|
|
public Guid? TableQuestionId { get; set; }
|
|
|
|
public Guid VisitTaskId { get; set; }
|
|
}
|
|
|
|
public class SegmentBindingQuery:PageInput
|
|
{
|
|
public Guid? QuestionId { get; set; }
|
|
|
|
public Guid? RowId { get; set; }
|
|
|
|
public Guid? SegmentId { get; set; }
|
|
|
|
public Guid? SegmentationId { get; set; }
|
|
|
|
public Guid? TableQuestionId { get; set; }
|
|
|
|
public Guid? VisitTaskId { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|