Package org.jeecgframework.web.demo.entity.test

Examples of org.jeecgframework.web.demo.entity.test.TFinanceFilesEntity


  @RequestMapping(params = "delFile")
  @ResponseBody
  public AjaxJson delFile( HttpServletRequest request) {
    AjaxJson j = new AjaxJson();
    String id  = request.getParameter("id");
    TFinanceFilesEntity file = systemService.getEntity(TFinanceFilesEntity.class, id);
    message = "" + file.getAttachmenttitle() + "被删除成功";
    tFinanceService.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.demo.entity.test.TFinanceFilesEntity

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.