using Volo.Abp.Application.Dtos; using Yi.Framework.Bbs.Application.Contracts.Dtos.BbsUser; using Yi.Framework.Bbs.Application.Contracts.Dtos.DiscussLable; using Yi.Framework.Bbs.Application.Contracts.Dtos.Plate; using Yi.Framework.Bbs.Domain.Shared.Enums; using Yi.Framework.Rbac.Application.Contracts.Dtos.User; namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss { public class DiscussGetOutputDto : EntityDto { /// /// 是否禁止评论创建功能 /// public bool IsDisableCreateComment { get; set; } public string Title { get; set; } public string? Types { get; set; } public string? Introduction { get; set; } public int AgreeNum { get; set; } public int SeeNum { get; set; } public string Content { get; set; } public string? Color { get; set; } public Guid PlateId { get; set; } //是否置顶,默认false public bool IsTop { get; set; } /// /// 封面 /// public string? Cover { get; set; } //是否私有,默认false public bool IsPrivate { get; set; } //私有需要判断code权限 public string? PrivateCode { get; set; } public DateTime CreationTime { get; set; } public DiscussPermissionTypeEnum PermissionType { get; set; } public bool IsAgree { get; set; } = false; public List? PermissionUserIds { get; set; } public BbsUserGetListOutputDto User { get; set; } public PlateGetOutputDto Plate { get; set; } public List? DiscussLables { get; set; } = new List(); public List Lables { get; set; } =new List(); } }