From 8e641e87e948222d4d4895ff8c602518d085fc0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=82=9C=E7=BF=94?= <2307953404@qq.com> Date: Thu, 29 Aug 2024 22:06:07 +0800 Subject: [PATCH] 1 --- asg_form/Controllers/AssignmentController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asg_form/Controllers/AssignmentController.cs b/asg_form/Controllers/AssignmentController.cs index 263a5d5..11542fa 100644 --- a/asg_form/Controllers/AssignmentController.cs +++ b/asg_form/Controllers/AssignmentController.cs @@ -14,7 +14,7 @@ namespace asg_form.Controllers public class TaskDB { public long id { get; set; } - public string userId { get; set; } + public long userId { get; set; } public string taskName { get; set; } public string taskDescription { get; set; } public string status { get; set; } @@ -22,7 +22,7 @@ namespace asg_form.Controllers } public class TaskCreate { - public string UserId { get; set; } + public long UserId { get; set; } public string TaskName { get; set; } public string TaskDescription { get; set; } public long Money { get; set; }