调课、停课、补课申请

This commit is contained in:
2026-07-25 15:36:14 +08:00 Unverified
parent 9685435da9
commit 13b61f191a
11 changed files with 1162 additions and 1 deletions
@@ -0,0 +1,12 @@
using Jiaowu.Api.Domain.Common;
namespace Jiaowu.Api.Domain.Academic;
public sealed class Notification : EntityBase
{
public Guid UserId { get; set; }
public required string Title { get; set; }
public required string Content { get; set; }
public bool IsRead { get; set; }
public string? LinkUrl { get; set; }
}