添加defaultValue
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
b2ba48ea90
commit
b0b3744cb1
|
@ -9642,6 +9642,11 @@
|
||||||
问题标识
|
问题标识
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.DefaultValue">
|
||||||
|
<summary>
|
||||||
|
默认值
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.QuestionEnName">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionTrialAddOrEdit.QuestionEnName">
|
||||||
<summary>
|
<summary>
|
||||||
问题英文名称
|
问题英文名称
|
||||||
|
@ -9735,6 +9740,11 @@
|
||||||
问题标识
|
问题标识
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionSystemAddOrEdit.DefaultValue">
|
||||||
|
<summary>
|
||||||
|
默认值
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionSystemAddOrEdit.QuestionEnName">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingTableQuestionSystemAddOrEdit.QuestionEnName">
|
||||||
<summary>
|
<summary>
|
||||||
问题英文名称
|
问题英文名称
|
||||||
|
@ -10418,6 +10428,11 @@
|
||||||
是否是裁判问题
|
是否是裁判问题
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetCalculateTableQuestionsOutDto.DefaultValue">
|
||||||
|
<summary>
|
||||||
|
默认值
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetCalculateTableQuestionsOutDto.ClassifyEditType">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetCalculateTableQuestionsOutDto.ClassifyEditType">
|
||||||
<summary>
|
<summary>
|
||||||
分类编辑类型 是否可编辑
|
分类编辑类型 是否可编辑
|
||||||
|
|
|
@ -465,6 +465,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public QuestionMark? QuestionMark { get; set; }
|
public QuestionMark? QuestionMark { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 默认值
|
||||||
|
/// </summary>
|
||||||
|
public string DefaultValue { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题英文名称
|
/// 问题英文名称
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -603,6 +608,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public QuestionMark? QuestionMark { get; set; }
|
public QuestionMark? QuestionMark { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 默认值
|
||||||
|
/// </summary>
|
||||||
|
public string DefaultValue { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 问题英文名称
|
/// 问题英文名称
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1735,6 +1745,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
[Comment("问题标识")]
|
[Comment("问题标识")]
|
||||||
public QuestionMark? QuestionMark { get; set; }
|
public QuestionMark? QuestionMark { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 默认值
|
||||||
|
/// </summary>
|
||||||
|
public string DefaultValue { get; set; } = string.Empty;
|
||||||
|
|
||||||
[Comment("字典code")]
|
[Comment("字典code")]
|
||||||
public string DictionaryCode { get; set; } = string.Empty;
|
public string DictionaryCode { get; set; } = string.Empty;
|
||||||
[Comment("数值类型")]
|
[Comment("数值类型")]
|
||||||
|
|
|
@ -427,7 +427,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
{
|
{
|
||||||
tableAnswerList.Add(new ReadingTableQuestionAnswer()
|
tableAnswerList.Add(new ReadingTableQuestionAnswer()
|
||||||
{
|
{
|
||||||
Answer = string.Empty,
|
Answer = otherQuestion.DefaultValue,
|
||||||
QuestionId = tableQuestion.Id,
|
QuestionId = tableQuestion.Id,
|
||||||
TrialId = taskinfo.TrialId,
|
TrialId = taskinfo.TrialId,
|
||||||
VisitTaskId = taskinfo.Id,
|
VisitTaskId = taskinfo.Id,
|
||||||
|
|
|
@ -65,7 +65,8 @@ public class ReadingTableQuestionSystem : BaseAddAuditEntity
|
||||||
[Comment("问题名称")]
|
[Comment("问题名称")]
|
||||||
public string QuestionName { get; set; } = string.Empty;
|
public string QuestionName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
[Comment("默认值")]
|
||||||
|
public string DefaultValue { get; set; } = string.Empty;
|
||||||
public IsRequired IsRequired { get; set; }
|
public IsRequired IsRequired { get; set; }
|
||||||
|
|
||||||
[Comment("排序号")]
|
[Comment("排序号")]
|
||||||
|
|
|
@ -93,6 +93,9 @@ public class ReadingTableQuestionTrial : BaseAddAuditEntity
|
||||||
public ShowQuestion ShowQuestion { get; set; }
|
public ShowQuestion ShowQuestion { get; set; }
|
||||||
public int? MaxRowCount { get; set; }
|
public int? MaxRowCount { get; set; }
|
||||||
|
|
||||||
|
[Comment("默认值")]
|
||||||
|
public string DefaultValue { get; set; } = string.Empty;
|
||||||
|
|
||||||
[Comment("图片数量")]
|
[Comment("图片数量")]
|
||||||
public int? ImageCount { get; set; }
|
public int? ImageCount { get; set; }
|
||||||
|
|
||||||
|
|
18547
IRaCIS.Core.Infra.EFCore/Migrations/20241230075945_tableDefaultValue.Designer.cs
generated
Normal file
18547
IRaCIS.Core.Infra.EFCore/Migrations/20241230075945_tableDefaultValue.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,44 @@
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class tableDefaultValue : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AddColumn<string>(
|
||||||
|
name: "DefaultValue",
|
||||||
|
table: "ReadingTableQuestionTrial",
|
||||||
|
type: "nvarchar(400)",
|
||||||
|
maxLength: 400,
|
||||||
|
nullable: false,
|
||||||
|
defaultValue: "",
|
||||||
|
comment: "默认值");
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<string>(
|
||||||
|
name: "DefaultValue",
|
||||||
|
table: "ReadingTableQuestionSystem",
|
||||||
|
type: "nvarchar(400)",
|
||||||
|
maxLength: 400,
|
||||||
|
nullable: false,
|
||||||
|
defaultValue: "",
|
||||||
|
comment: "默认值");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "DefaultValue",
|
||||||
|
table: "ReadingTableQuestionTrial");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "DefaultValue",
|
||||||
|
table: "ReadingTableQuestionSystem");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -6582,6 +6582,12 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.HasColumnType("nvarchar(400)")
|
.HasColumnType("nvarchar(400)")
|
||||||
.HasComment("数据表名称");
|
.HasComment("数据表名称");
|
||||||
|
|
||||||
|
b.Property<string>("DefaultValue")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(400)
|
||||||
|
.HasColumnType("nvarchar(400)")
|
||||||
|
.HasComment("默认值");
|
||||||
|
|
||||||
b.Property<Guid?>("DependParentId")
|
b.Property<Guid?>("DependParentId")
|
||||||
.HasColumnType("uniqueidentifier")
|
.HasColumnType("uniqueidentifier")
|
||||||
.HasComment("关联父问题");
|
.HasComment("关联父问题");
|
||||||
|
@ -6796,6 +6802,12 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.HasMaxLength(400)
|
.HasMaxLength(400)
|
||||||
.HasColumnType("nvarchar(400)");
|
.HasColumnType("nvarchar(400)");
|
||||||
|
|
||||||
|
b.Property<string>("DefaultValue")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(400)
|
||||||
|
.HasColumnType("nvarchar(400)")
|
||||||
|
.HasComment("默认值");
|
||||||
|
|
||||||
b.Property<Guid?>("DependParentId")
|
b.Property<Guid?>("DependParentId")
|
||||||
.HasColumnType("uniqueidentifier");
|
.HasColumnType("uniqueidentifier");
|
||||||
|
|
||||||
|
@ -17343,7 +17355,7 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
|
||||||
b.HasOne("IRaCIS.Core.Domain.Models.Trial", "Trial")
|
b.HasOne("IRaCIS.Core.Domain.Models.Trial", "Trial")
|
||||||
.WithMany()
|
.WithMany("TrialIdentityUserList")
|
||||||
.HasForeignKey("TrialId")
|
.HasForeignKey("TrialId")
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
@ -17684,7 +17696,7 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
|
||||||
b.HasOne("IRaCIS.Core.Domain.Models.Trial", "Trial")
|
b.HasOne("IRaCIS.Core.Domain.Models.Trial", "Trial")
|
||||||
.WithMany("TrialUserList")
|
.WithMany("TrialUserRoleList")
|
||||||
.HasForeignKey("TrialId")
|
.HasForeignKey("TrialId")
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
@ -18409,6 +18421,8 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
|
|
||||||
b.Navigation("TrialDocumentList");
|
b.Navigation("TrialDocumentList");
|
||||||
|
|
||||||
|
b.Navigation("TrialIdentityUserList");
|
||||||
|
|
||||||
b.Navigation("TrialReadingCriterionList");
|
b.Navigation("TrialReadingCriterionList");
|
||||||
|
|
||||||
b.Navigation("TrialSiteList");
|
b.Navigation("TrialSiteList");
|
||||||
|
@ -18419,7 +18433,7 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
|
|
||||||
b.Navigation("TrialStateChangeList");
|
b.Navigation("TrialStateChangeList");
|
||||||
|
|
||||||
b.Navigation("TrialUserList");
|
b.Navigation("TrialUserRoleList");
|
||||||
|
|
||||||
b.Navigation("UserFeedBackList");
|
b.Navigation("UserFeedBackList");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue