fix:框架

This commit is contained in:
2026-07-15 15:45:32 +08:00
parent 90c4a9e8e9
commit 2b7ddc2313
8 changed files with 151 additions and 15 deletions

View File

@@ -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() {
}
}