|
|
|
@@ -0,0 +1,15 @@ |
|
|
|
package org.moxianchengbao; |
|
|
|
|
|
|
|
import org.mybatis.spring.annotation.MapperScan; |
|
|
|
import org.springframework.boot.SpringApplication; |
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
|
|
|
|
|
@MapperScan("com.tothefor.mapper") |
|
|
|
@SpringBootApplication |
|
|
|
public class StockPredictJavaApplication { |
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
SpringApplication.run(StockPredictJavaApplication.class, args); |
|
|
|
} |
|
|
|
|
|
|
|
} |