Package org.jeecgframework.web.cgform.entity.upload

Examples of org.jeecgframework.web.cgform.entity.upload.CgUploadEntity


  @RequestMapping(params = "delFile")
  @ResponseBody
  public AjaxJson delFile( HttpServletRequest request) {
    AjaxJson j = new AjaxJson();
    String id  = request.getParameter("id");
    CgUploadEntity file = systemService.getEntity(CgUploadEntity.class, id);
    message = "" + file.getAttachmenttitle() + "被删除成功";
    cgUploadService.deleteFile(file);
    systemService.addLog(message, Globals.Log_Type_DEL,
        Globals.Log_Leavel_INFO);
    j.setSuccess(true);
    j.setMsg(message);
View Full Code Here

TOP

Related Classes of org.jeecgframework.web.cgform.entity.upload.CgUploadEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.