This commit is contained in:
2025-06-24 14:28:46 +08:00
parent 7795cf25f5
commit 8816de937f
4 changed files with 58 additions and 47 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 质量培训数据
/// </summary>
public class TrainPlanItem : BaseEntities
{
/// <summary>
/// 培训人数
/// </summary>
public int TrainPersonNum { get; set; }
}
}