This commit is contained in:
王炜翔 2024-09-16 21:30:30 +08:00
parent 7139127a78
commit b294143594

View File

@ -26,14 +26,14 @@ namespace asg_form.Controllers.Teamregistration
} }
public class userMsg public class userMsg
{ {
public long id { get; set; } public long? id { get; set; }
public string chinaname { get; set; } public string chinaname { get; set; }
public int userId { get; set; } public int userId { get; set; }
public int sex { get; set; } public int sex { get; set; }
public string introduction { get; set; } public string introduction { get; set; }
public string gameId { get; set; } public string gameId { get; set; }
public string historyRank { get; set; } public string? historyRank { get; set; }
public string contactNumber { get; set; } public string? contactNumber { get; set; }
} }
public class RegisterController : ControllerBase public class RegisterController : ControllerBase