类 SettingController

java.lang.Object
plus.hiver.module.system.controller.SettingController

@RestController @RequestMapping("/hiver/setting") public class SettingController extends Object
基础配置接口

尊重知识产权,CV 请保留版权,海文科技 https://hiver.cc 出品,不允许非法使用,后果自负

作者:
Yazhi Li
  • 构造器详细资料

    • SettingController

      public SettingController()
  • 方法详细资料

    • seeSecret

      @GetMapping("/seeSecret/{settingName}") public plus.hiver.common.api.Result seeSecret(@PathVariable String settingName)
    • ossCheck

      @GetMapping("/oss/check") public plus.hiver.common.api.Result ossCheck()
    • smsCheck

      @GetMapping("/sms/check") public plus.hiver.common.api.Result smsCheck()
    • oss

      @GetMapping("/oss/{serviceName}") public plus.hiver.common.api.Result<OssSetting> oss(@PathVariable String serviceName)
    • sms

      @GetMapping("/sms/{serviceName}") public plus.hiver.common.api.Result<SmsSetting> sms(@PathVariable String serviceName)
    • smsTemplateCode

      @GetMapping("/sms/templateCodes/{serviceName}") public plus.hiver.common.api.Result smsTemplateCode(@PathVariable String serviceName)
    • email

      @GetMapping("/email") public plus.hiver.common.api.Result<EmailSetting> email()
    • other

      @GetMapping("/other") public plus.hiver.common.api.Result<plus.hiver.common.vo.OtherSetting> other()
    • notice

      @GetMapping("/notice") public plus.hiver.common.api.Result<NoticeSetting> notice()
    • ossSet

      @PostMapping("/oss/set") public plus.hiver.common.api.Result ossSet(OssSetting ossSetting)
    • smsSet

      @PostMapping("/sms/set") public plus.hiver.common.api.Result smsSet(SmsSetting smsSetting)
    • smsTemplateCodeSet

      @PostMapping("/sms/templateCode/set") public plus.hiver.common.api.Result smsTemplateCodeSet(SmsSetting sms)
    • emailSet

      @PostMapping("/email/set") public plus.hiver.common.api.Result emailSet(EmailSetting emailSetting)
    • otherSet

      @PostMapping("/other/set") public plus.hiver.common.api.Result otherSet(plus.hiver.common.vo.OtherSetting otherSetting)
    • noticeSet

      @PostMapping("/notice/set") public plus.hiver.common.api.Result noticeSet(NoticeSetting noticeSetting)