Exemplo n.º 1
0
        public BaseResponse <string> GetImgFileThumbnailPathByFileId(string id, GetImgFileThumbnailRequest condtion)
        {
            if (condtion == null)
            {
                condtion = new GetImgFileThumbnailRequest();
            }
            var fileInfo = BaseFile.GetInstance(id);
            var imgPath  = fileInfo.GetImgFileThumbnailPath(condtion);

            return(BaseResponse.getResult(imgPath, "success"));
        }