fix: 包模块提示定义

This commit is contained in:
2025-11-21 13:42:13 +08:00
parent b3a3d3761c
commit c5b047a921
5 changed files with 42 additions and 12 deletions

View File

@@ -1,11 +0,0 @@
package org.nl;
/**
* @Author: lyd
* @Date: ${DATE}
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,6 @@
/**
* 每个模块对应的核心包:用于工具、枚举、处理器等
* @Author: lyd
* @Date: 2025/11/21
*/
package org.nl.sys.core;

View File

@@ -0,0 +1,7 @@
/**
* 具体功能模块的分包
* 子功能里面必须有provider包里面定义xxxProvider类需要添加@Service去实现API模块对应接口方法。
* @Author: lyd
* @Date: 2025/11/21
*/
package org.nl.sys.modular;

View File

@@ -0,0 +1,6 @@
/**
* 系统模块
* @Author: lyd
* @Date: 2025/11/21
*/
package org.nl.sys;