Add setting controller

This commit is contained in:
2023-12-03 23:07:22 +08:00
parent d7c0b7376d
commit 5c8775bf12
10 changed files with 166 additions and 0 deletions

View File

@@ -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)
}

View File

@@ -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")
}
}