增加通知设置/短信设置基础控制器
This commit is contained in:
parent
e8bcc62d4b
commit
6cf24fc93e
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package com.mdd.admin.service.setting;
|
||||
|
||||
/**
|
||||
* 通知配置接口类
|
||||
*/
|
||||
public interface ISettingNoticeService {
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package com.mdd.admin.service.setting;
|
||||
|
||||
/**
|
||||
* 短信配置接口类
|
||||
*/
|
||||
public interface ISettingSmsService {
|
||||
}
|
||||
|
|
@ -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 {
|
||||
}
|
||||
|
|
@ -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 {
|
||||
}
|
||||
Loading…
Reference in New Issue