2026-02-24 20:44:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Platform.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
public class Note : FullAuditedEntity<Guid>, IMultiTenant
|
|
|
|
|
|
{
|
2026-06-06 22:22:35 +00:00
|
|
|
|
public Note()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Note(Guid id) : base(id)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-24 20:44:16 +00:00
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
public string EntityName { get; set; }
|
|
|
|
|
|
public string EntityId { get; set; }
|
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
public string Subject { get; set; }
|
|
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string FilesJson { get; set; }
|
|
|
|
|
|
}
|