2018-01-17 17:51:53 +08:00
|
|
|
package cn.keking.service;
|
|
|
|
|
|
2019-06-17 14:21:16 +08:00
|
|
|
import cn.keking.model.FileAttribute;
|
2018-01-17 17:51:53 +08:00
|
|
|
import org.springframework.ui.Model;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Created by kl on 2018/1/17.
|
|
|
|
|
* Content :
|
|
|
|
|
*/
|
|
|
|
|
public interface FilePreview {
|
2019-06-17 14:21:16 +08:00
|
|
|
String filePreviewHandle(String url, Model model, FileAttribute fileAttribute);
|
2018-01-17 17:51:53 +08:00
|
|
|
}
|