1、删除无用demo代码

2、添加主数据模块项目
This commit is contained in:
2025-10-15 10:05:49 +08:00
parent b850a3779c
commit fd6e2d8ce6
89 changed files with 1312 additions and 2364 deletions

View File

@ -0,0 +1,28 @@
package com.xjrsoft;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import com.pictc.utils.SpringTools;
import com.xjrsoft.common.annotation.UniqueNameGenerator;
/**
* @author 张福财
* 主数据服务---开发使用
* 使用时集成到其它模块使用,不作为单独的服务
*/
@SpringBootApplication
@EnableAspectJAutoProxy(exposeProxy = true)
@ComponentScan(nameGenerator = UniqueNameGenerator.class)
@EnableFeignClients
@EnableDiscoveryClient
public class ITCMdmApplication {
public static void main(String[] args) {
SpringTools.logStarter(ITCMdmApplication.class, args);
}
}