Newer
Older
huludao / src / main / java / com / newfiber / led / NewfiberLedApplication.java
@新烽开发者 新烽开发者 on 22 Jul 510 bytes init
package com.newfiber.led;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication
@MapperScan("com.newfiber.led.business.dao")
@EnableScheduling
public class NewfiberLedApplication {

    public static void main(String[] args) {
        SpringApplication.run(NewfiberLedApplication.class, args);
    }

}