#
luxiaotao1123
2024-02-25 7bc7a9c11f4ed9b8539e9c72e5a09effcedf317a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.wcs;
 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
 
@MapperScan("com.zy.asrs.wcs.**.mapper")
@EnableScheduling
@SpringBootApplication
public class WcsBoot {
 
    public static void main(String[] args) {
        SpringApplication.run(WcsBoot.class, args);
    }
 
}