新增查看页面
This commit is contained in:
@@ -61,8 +61,6 @@ public class BizMyfilesService extends CrudService<BizMyfilesDao, BizMyfiles> {
|
||||
@Transactional
|
||||
public void save(BizMyfiles bizMyfiles) {
|
||||
super.save(bizMyfiles);
|
||||
// 保存上传附件
|
||||
FileUploadUtils.saveFileUpload(bizMyfiles, bizMyfiles.getId(), "bizMyfiles_file");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -2,7 +2,6 @@ package com.jeesite.modules.biz.web;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jeesite.modules.app.service.MsgService;
|
||||
import com.jeesite.modules.app.utils.vDate;
|
||||
import com.jeesite.modules.biz.entity.BizCalendarFlow;
|
||||
import com.jeesite.modules.biz.entity.BizListItem;
|
||||
@@ -49,10 +48,6 @@ public class BizCalendarScheduleController extends BaseController {
|
||||
@Resource
|
||||
private BizCalendarFlowService flowService;
|
||||
|
||||
|
||||
@Resource
|
||||
private MsgService msgService;
|
||||
|
||||
private final BizCalendarScheduleService bizCalendarScheduleService;
|
||||
|
||||
|
||||
|
||||
@@ -3,18 +3,16 @@ package com.jeesite.modules.biz.web;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import cn.hutool.core.net.multipart.UploadFile;
|
||||
import com.jeesite.modules.app.utils.FileDownloadUtils;
|
||||
import com.jeesite.modules.app.utils.MyFileUtils;
|
||||
import com.jeesite.modules.app.utils.vId;
|
||||
import com.jeesite.modules.biz.entity.BizMailAttachments;
|
||||
import com.jeesite.modules.file.entity.FileEntity;
|
||||
import com.jeesite.modules.file.entity.FileUpload;
|
||||
import com.jeesite.modules.file.service.FileEntityService;
|
||||
import com.jeesite.modules.file.utils.FileUploadUtils;
|
||||
import jakarta.annotation.Resource;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
import jakarta.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
@@ -43,7 +41,6 @@ import com.jeesite.modules.biz.service.BizMyfilesService;
|
||||
@Controller
|
||||
@RequestMapping(value = "${adminPath}/biz/myfiles")
|
||||
public class BizMyfilesController extends BaseController {
|
||||
|
||||
private static final String FILE_PATH = "/ogsapp/files";
|
||||
|
||||
private final BizMyfilesService bizMyfilesService;
|
||||
|
||||
Reference in New Issue
Block a user