mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
13 lines
260 B
Java
13 lines
260 B
Java
package cn.hellohao.service;
|
|
|
|
import cn.hellohao.pojo.UploadConfig;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public interface UploadConfigService {
|
|
|
|
UploadConfig getUpdateConfig();
|
|
|
|
Integer setUpdateConfig(UploadConfig updateConfig);
|
|
}
|