This commit is contained in:
Putoo
2026-07-09 22:46:28 +08:00
parent 010ca90575
commit cfe6612a7a
33 changed files with 1355 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
namespace Application.Domain.Entity;
public class UserTaskModel
{
public string code { get; set; }
public int taskId { get; set; }
public int itemId { get; set; }
public string name { get; set; }
public int state { get; set; }
public CheckTowerNeed result { get; set; }
}