mirror of
https://github.com/kekingcn/kkFileView.git
synced 2026-03-30 13:42:12 +00:00
13 lines
273 B
Java
13 lines
273 B
Java
package cn.keking.service;
|
|
|
|
import cn.keking.model.FileAttribute;
|
|
import org.springframework.ui.Model;
|
|
|
|
/**
|
|
* Created by kl on 2018/1/17.
|
|
* Content :
|
|
*/
|
|
public interface FilePreview {
|
|
String filePreviewHandle(String url, Model model, FileAttribute fileAttribute);
|
|
}
|