mh_frame_sps/APT.Domain/LDX_Test_Course.cs

23 lines
468 B
C#
Raw Permalink Normal View History

2026-04-07 13:47:52 +08:00
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; }
}
}