This commit is contained in:
wangjinlei
2024-03-21 10:27:27 +08:00
parent 2a00c09e0a
commit ad4651da74
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.peanut.modules.sociology.controller;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Slf4j
@RestController
@RequestMapping("sociology/course")
public class CourseController {
}

View File

@@ -0,0 +1,4 @@
package com.peanut.modules.sociology.service;
public interface CourseService {
}