地磅数据系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
398 B

8 months ago
  1. package com.binary.weight;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.scheduling.annotation.EnableScheduling;
  5. //@EnableScheduling
  6. @SpringBootApplication
  7. public class WeightApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(WeightApplication.class, args);
  10. }
  11. }