|  |  | 
 |  |  | package com.zy.asrs.wms; | 
 |  |  |  | 
 |  |  | import com.zy.asrs.common.utils.RandomValidateCodeUtil; | 
 |  |  | import org.mybatis.spring.annotation.MapperScan; | 
 |  |  | import org.springframework.boot.SpringApplication; | 
 |  |  | import org.springframework.boot.autoconfigure.SpringBootApplication; | 
 |  |  | import org.springframework.context.annotation.ComponentScan; | 
 |  |  | import org.springframework.context.annotation.ComponentScans; | 
 |  |  | import org.springframework.scheduling.annotation.EnableScheduling; | 
 |  |  |  | 
 |  |  | @MapperScan("com.zy.**.mapper") | 
 |  |  | 
 |  |  | public class WmsBoot { | 
 |  |  |  | 
 |  |  |     public static void main(String[] args) { | 
 |  |  |         RandomValidateCodeUtil.init(); | 
 |  |  |         SpringApplication.run(WmsBoot.class, args); | 
 |  |  |     } | 
 |  |  |  |