2、五环,预试车管理,生成工作包检查表和检查表会签逻辑优化;

3、五环,项目级补充待办
This commit is contained in:
2025-01-08 14:51:16 +08:00
parent f7396815a0
commit f002af50a7
17 changed files with 732 additions and 59 deletions
+36
View File
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class WorkToDo
{
/// <summary>
/// Id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 待办标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// 待办说明
/// </summary>
public string Detail { get; set; }
/// <summary>
/// 数量
/// </summary>
public int Num { get; set; }
/// <summary>
/// 跳转页面
/// </summary>
public string PageUrl { get; set; }
/// <summary>
/// 其他
/// </summary>
public string Memo { get; set; }
}
}