2024-02-04 试车分包管理添加

This commit is contained in:
2024-02-04 11:12:50 +08:00
parent fdbca52cf2
commit a43e2cde43
19 changed files with 602 additions and 450 deletions
@@ -0,0 +1,18 @@
namespace Model
{
public class DriverSubEvaluationData
{
/// <summary>
/// 序号
/// </summary>
public int Number { get; set; }
/// <summary>
/// 事项
/// </summary>
public string Matter { get; set; }
/// <summary>
/// 分数
/// </summary>
public string Grade { get; set; }
}
}