using APT.Infrastructure.Core; using System; using System.Collections.Generic; using System.Text; namespace APT.Domain { public class APT_Test_Course : MesEntityBase { public string Name { get; set; } public string TeacherName { get; set; } public string ClassTime { get; set; } public int Score { get; set; } public Guid UserID { get; set; } public virtual APT_Test_User TestUser { get; set; } } }