12345678910111213141516171819202122 |
- using XF.Domain.Repository;
- namespace Hotline.Article
- {
- public class CircularReadGroup:CreationEntity
- {
- public string CircularId { get; set; }
- public string? UserId{ get; set; }
- public string? UserName { get; set; }
- public string? OrgId { get; set; }
- public string? OrgName { get; set; }
- public bool IsRead { get; set; }
- public DateTime? ReadTime { get; set; }
- public bool? IsTimeOut { get; set; }
- }
- }
|