2025年度投票修改

This commit is contained in:
路 范
2025-06-10 19:19:30 +08:00
parent 88316af778
commit 4d17ef84c2
14 changed files with 1096 additions and 8 deletions

View File

@@ -15,6 +15,7 @@ namespace Vote.Services.Dto
/// 项目类型
/// </summary>
public int? type { get; set; }
public int? is_no_inspection { get; set; }
}
public class ProjectsOutput
{
@@ -48,6 +49,7 @@ namespace Vote.Services.Dto
///
/// </summary>
public bool vote { get; set; } = false;
public int is_no_inspection { get; set; }
}
public class CheckSubmitCodeInput
{
@@ -116,5 +118,6 @@ namespace Vote.Services.Dto
[Required]
public int expertnum { get; set; }
}
public int is_no_inspection { get; set; }
}
}