guoshilong
2023-04-14 0eb4d8d77b0bbd4b72a6bca2deafff11e08164fd
skjcmanager/skjcmanager-service/skjcmanager-system/src/main/java/cn/gistack/system/SystemApplication.java
@@ -16,7 +16,7 @@
 */
package cn.gistack.system;
import cn.gistack.common.constant.AppsConstant;
import org.mybatis.spring.annotation.MapperScan;
import org.springblade.core.cloud.client.BladeCloudApplication;
import org.springblade.core.launch.BladeApplication;
import org.springblade.core.launch.constant.AppConstant;
@@ -27,11 +27,12 @@
 * @author Chill
 */
@BladeCloudApplication
@EnableFeignClients(basePackages = "cn.gistack.system.user.feign")
@EnableFeignClients({"cn.gistack"})
@MapperScan({"org.springblade.**.mapper.**","cn.gistack.**.mapper.**"})
public class SystemApplication {
   public static void main(String[] args) {
      BladeApplication.run(AppsConstant.APPLICATION_SYSTEM_NAME, SystemApplication.class, args);
      BladeApplication.run(AppConstant.APPLICATION_SYSTEM_NAME, SystemApplication.class, args);
   }
}