public async Task <ApiRequestResult> AddAsync(SubjectCommentDto dto)
        {
            var command = dto.EntityMap <SubjectCommentDto, SubjectComment>();
            await _subjectCommentRepository.AddAsync(command);

            return(ApiRequestResult.Success("添加成功"));
        }