mh_frame_sps/APT.Domain/LDX_Test_Course.cs
2026-04-07 13:47:52 +08:00

23 lines
468 B
C#

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; }
}
}