This commit is contained in:
2024-09-25 15:44:59 +08:00
parent a76546ebe6
commit 6bf0d5d7ba
72 changed files with 21606 additions and 1608 deletions

View File

@@ -1,6 +1,4 @@
using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
namespace CapMachine.Model
{
@@ -23,6 +21,13 @@ namespace CapMachine.Model
[Column(Name = "Name", IsNullable = false, StringLength = 50)]
public string? Name { get; set; }
/// <summary>
/// 程序名称
/// 分类
/// </summary>
[Column(Name = "Category", IsNullable = true, StringLength = 50)]
public string? Category { get; set; }
/// <summary>
/// 程序段反复
/// </summary>
@@ -49,7 +54,7 @@ namespace CapMachine.Model
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
/// </summary>
public ICollection<ProStep>? ProSteps { get; set; }
public List<ProStep>? ProSteps { get; set; }
}
}