Add setting controller
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package top.fatweb.api.service.system
|
||||
|
||||
import top.fatweb.api.param.system.SettingParam
|
||||
import top.fatweb.api.vo.system.SettingVo
|
||||
|
||||
interface ISysSettingService {
|
||||
fun get(): SettingVo
|
||||
|
||||
fun update(settingParam: SettingParam)
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package top.fatweb.api.service.system.impl
|
||||
|
||||
import org.springframework.stereotype.Service
|
||||
import top.fatweb.api.param.system.SettingParam
|
||||
import top.fatweb.api.service.system.ISysSettingService
|
||||
import top.fatweb.api.vo.system.SettingVo
|
||||
|
||||
@Service
|
||||
class SysSettingServiceImpl : ISysSettingService {
|
||||
override fun get(): SettingVo {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun update(settingParam: SettingParam) {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user