增加通知设置/短信设置基础控制器

This commit is contained in:
TinyAnts 2022-08-23 10:56:51 +08:00
parent e8bcc62d4b
commit 6cf24fc93e
6 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.mdd.admin.controller.setting;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 通知设置管理
*/
@RestController
@RequestMapping("api/setting/notice")
public class NoticeController {
public Object list() {
return null;
}
public Object detail() {
return null;
}
public Object save() {
return null;
}
}

View File

@ -0,0 +1,25 @@
package com.mdd.admin.controller.setting;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 短信设置管理
*/
@RestController
@RequestMapping("api/setting/sms")
public class SmsController {
public Object list() {
return null;
}
public Object detail() {
return null;
}
public Object save() {
return null;
}
}

View File

@ -0,0 +1,7 @@
package com.mdd.admin.service.setting;
/**
* 通知配置接口类
*/
public interface ISettingNoticeService {
}

View File

@ -0,0 +1,7 @@
package com.mdd.admin.service.setting;
/**
* 短信配置接口类
*/
public interface ISettingSmsService {
}

View File

@ -0,0 +1,11 @@
package com.mdd.admin.service.setting.impl;
import com.mdd.admin.service.setting.ISettingNoticeService;
import org.springframework.stereotype.Service;
/**
* 通知配置服务实现类
*/
@Service
public class SettingNoticeServiceImpl implements ISettingNoticeService {
}

View File

@ -0,0 +1,11 @@
package com.mdd.admin.service.setting.impl;
import com.mdd.admin.service.setting.ISettingSmsService;
import org.springframework.stereotype.Service;
/**
* 短信配置服务实现类
*/
@Service
public class SettingSmsServiceImpl implements ISettingSmsService {
}