SGGL_JT/SUBQHSE/Model/ZHGL/DataSync/EduTrainOutput.cs

13 lines
345 B
C#
Raw Normal View History

2025-04-07 17:43:30 +08:00
using System;
namespace Model
{
public class EduTrainOutput:BaseEntities
{
2026-03-23 15:22:29 +08:00
public string TrainUnitName { get; set; }
2025-04-07 17:43:30 +08:00
public string TrainTitle { get; set; }
public DateTime? TrainStartDate { get; set; }
public DateTime? TrainEndDate { get; set; }
public int TrainPersonNum { get; set; }
}
}