| 123456789101112131415161718 |
- package com.sckw.system;
- import com.sckw.remote.annotation.SckwRemoteApplication;
- import org.springframework.boot.SpringApplication;
- /**
- * @desc: 系统SaaS基础服务
- * @author: zk
- * @date: 22023-05-26 11:46
- */
- @SckwRemoteApplication
- public class SystemApplication {
- public static void main(String[] args) {
- SpringApplication.run(SystemApplication.class, args);
- }
- }
|