forked from kk-open/kkFileView
18 lines
393 B
Java
18 lines
393 B
Java
package cn.keking.service;
|
|
|
|
import cn.keking.config.ConfigConstants;
|
|
import cn.keking.model.FileAttribute;
|
|
import org.springframework.ui.Model;
|
|
|
|
/**
|
|
* Created by kl on 2018/1/17.
|
|
* Content :
|
|
*/
|
|
public interface FilePreview {
|
|
|
|
String TEXT_TYPE = "textType";
|
|
String DEFAULT_TEXT_TYPE = "simText";
|
|
|
|
String filePreviewHandle(String url, Model model, FileAttribute fileAttribute);
|
|
}
|