You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ImgController.cs 572 B

123456789101112131415161718192021
  1. using Learun.Application.Base.SystemModule;
  2. using System.Web.Mvc;
  3. namespace Learun.Application.Web.Areas.LR_SystemModule.Controllers
  4. {
  5. public class ImgController : MvcControllerBase
  6. {
  7. private ImgIBLL imgIBLL = new ImgBLL();
  8. /// <summary>
  9. /// 获取图片
  10. /// </summary>
  11. /// <param name="parentId"></param>
  12. /// <returns></returns>
  13. [HttpGet]
  14. public ActionResult GetImg(string keyValue)
  15. {
  16. imgIBLL.GetImg(keyValue);
  17. return Success("获取成功!");
  18. }
  19. }
  20. }