fix:框架
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package cn.code.nl.module.lms;
|
||||
|
||||
import cn.code.nl.framework.execute.biz.lms.LmsTaskCommonApi;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
*
|
||||
* @Author: liyongde
|
||||
* @Date: 2026/7/15 15:25
|
||||
*/
|
||||
@RestController // 提供 RESTful API 接口,给 Feign 调用
|
||||
@Validated
|
||||
public class DemoApi implements LmsTaskCommonApi {
|
||||
@Override
|
||||
public void doHandlePicked() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user