清理模型
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-10-12 10:48:43 +08:00
parent 650f4706a8
commit 2f1f266ea3
2 changed files with 1 additions and 7 deletions

View File

@ -4,15 +4,11 @@ namespace IRaCIS.Core.Application.Service.WorkLoad.DTO
{ {
public class EnrollViewModel public class EnrollViewModel
{ {
[StringLength(50)]
public string ChineseName { get; set; } = string.Empty; public string ChineseName { get; set; } = string.Empty;
[StringLength(100)]
public string FirstName { get; set; } = string.Empty; public string FirstName { get; set; } = string.Empty;
[StringLength(100)]
public string LastName { get; set; } = string.Empty; public string LastName { get; set; } = string.Empty;
public decimal? AdjustmentMultiple { get; set; } = 0; public decimal? AdjustmentMultiple { get; set; } = 0;

View File

@ -49,7 +49,6 @@ namespace IRaCIS.Core.Test.CodeFirstTest.MSSQL
{ {
public Guid TrialImageDownloadId { get; set; } public Guid TrialImageDownloadId { get; set; }
[StringLength(100)]
public string TestName { get; set; } public string TestName { get; set; }
} }
@ -137,7 +136,6 @@ namespace IRaCIS.Core.Test.CodeFirstTest.MSSQL
{ {
public string DefaultLength { get; set; } public string DefaultLength { get; set; }
[MaxLength(300)]
public string UserDefineLength { get; set; } public string UserDefineLength { get; set; }
public string UserDefineText { get; set; } public string UserDefineText { get; set; }