田源
2024-04-16 e1feed4fb9f3a7722eb0cd646e73e6573bdfb6e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vci.ubcs.code.applyjtcodeservice;
 
import org.springblade.core.cloud.client.UbcsCloudApplication;
import org.springblade.core.launch.UbcsApplication;
import org.springblade.core.launch.constant.AppConstant;
 
/**
 * 集团码申请接口启动器
 *
 * @author
 * xieju
 */
@UbcsCloudApplication
public class GroupCodeApplyApplication {
    public static void main(String[] args) {
        UbcsApplication.run(AppConstant.APPLICATION_NAME_PREFIX+"applyjtcodeservice", GroupCodeApplyApplication.class, args);
    }
}