20 lines
588 B
Java
20 lines
588 B
Java
package cn.keking.service.impl;
|
|
|
|
import cn.keking.service.FilePreview;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.ui.Model;
|
|
|
|
/**
|
|
* Created by kl on 2018/1/17.
|
|
* Content :其他文件
|
|
*/
|
|
@Service
|
|
public class OtherFilePreviewImpl implements FilePreview {
|
|
@Override
|
|
public String filePreviewHandle(String url, Model model) {
|
|
model.addAttribute("msg", "系统还不支持该格式文件的在线预览," +
|
|
"如有需要请按下方显示的邮箱地址联系系统维护人员");
|
|
return "fileNotSupported";
|
|
}
|
|
}
|