This commit is contained in:
he
2022-08-11 13:43:45 +08:00
parent 039b478261
commit e2ad22437f
2 changed files with 107 additions and 53 deletions
@@ -49,6 +49,31 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public ArbitrationRule ArbitrationRule { get; set; }
}
public enum NeedSynchronize
{
/// <summary>
/// 需要
/// </summary>
Need=0,
/// <summary>
/// 不需要
/// </summary>
NotNeed = 1,
/// <summary>
/// 裁判不相等
/// </summary>
JudgeNotEqual=2,
}
public class SynchronizeCriterionInDto
{
[NotDefault]
public Guid TrialId { get; set; }
}
public class VerifyeCriterionNeedSynchronizeInDto
{
[NotDefault]