public IActionResult GetPostCateDetailByPostCateId(int postCateId)
        {
            var res = _postCategoryService.GetPostCateDetailByPostCateId(postCateId);

            return(OkBaseResponse(res));
        }