xiaochanghai 1 year ago
parent 582d598117
commit 615746b405
  1. 12
      Tiobon.Core.Model/ViewModels/Extend/DefaultGhre_ExamPaperInput.cs

@ -1,4 +1,5 @@
using Tiobon.Core.Model.Models;
using System.Net.NetworkInformation;
using Tiobon.Core.Model.Models;
namespace Tiobon.Core.Model;
@ -31,6 +32,7 @@ public class DefaultGhre_ExamPaperColumn
public string placeholder { get; set; }
public int displayType { get; set; }
public int width { get; set; } = 150;
}
@ -38,12 +40,12 @@ public class DefaultGhre_ExamPaperColumn
public class DefaultGhre_ExamPaperPageData
{
public DefaultGhre_ExamPaperBaseData baseData { get; set; } = new DefaultGhre_ExamPaperBaseData();
public DefaultGhre_ExamPaperStyleInfo styleInfo { get; set; } = new DefaultGhre_ExamPaperStyleInfo();
public DefaultGhre_ExamPaperStyleInfo styleInfo { get; set; } = new DefaultGhre_ExamPaperStyleInfo();
public string examPaperSetType { get; set; }
public List<Ghre_ExamPaperConfig> examPaperSetData { get; set; } = new List<Ghre_ExamPaperConfig> { };
public List<DefaultGhre_ExamPaperPreview> previewList { get; set; } = new List<DefaultGhre_ExamPaperPreview> { };
}
public class DefaultGhre_ExamPaperBaseData: Ghre_ExamPaperBase
public class DefaultGhre_ExamPaperBaseData : Ghre_ExamPaperBase
{
public long? CourseId { get; set; }
public long? CourseSceneId { get; set; }
@ -82,8 +84,8 @@ public class DefaultGhre_ExamPaperPreview
/// </summary>
public long? ConfigId { get; set; }
public FromGhre_QuestionQuestionTypeDetail detail { get; set; } = new FromGhre_QuestionQuestionTypeDetail();
}
public class InsertExamPaperConfigInput
}
public class InsertExamPaperConfigInput
{
public Ghre_ExamPaperConfig tableData { get; set; } = new Ghre_ExamPaperConfig();
public List<DefaultGhre_ExamPaperPreview> previewList { get; set; } = new List<DefaultGhre_ExamPaperPreview> { };

Loading…
Cancel
Save