GenerationMain.java 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.gyee.generation;
  2. import org.mybatis.spring.annotation.MapperScan;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. /**
  6. * @ClassName : GenerationMain
  7. * @Author : xieshengjie
  8. * @Date: 2022/2/28 14:55
  9. * @Description :
  10. */
  11. @SpringBootApplication
  12. @MapperScan("com.gyee.generation.mapper")
  13. public class GenerationMain {
  14. public static void main(String[] args) throws Exception {
  15. SpringApplication.run(GenerationMain.class, args);
  16. //
  17. // Calendar c = Calendar.getInstance();
  18. // Date begin = null;
  19. // Date end = null;
  20. // c.set(Calendar.MONTH, 7);
  21. // c.set(Calendar.DAY_OF_MONTH, 1);
  22. //
  23. //
  24. // c.setTime(DateUtils.truncate(c.getTime()));
  25. //
  26. //
  27. //
  28. // begin = new Date();
  29. // System.out.println("设备指标记录调度程序执行开始!。。。。。。");
  30. // for (int i = 0; i < 30; i++) {
  31. //
  32. //
  33. // System.out.println(DateUtils.format(c.getTime(), "yyyy-MM-dd HH:mm:ss").toString());
  34. //
  35. // EquipmentInfo1Service equipmentInfo1Service = SpringUtils.getBean("equipmentInfo1Service");
  36. // EquipmentInfo2Service equipmentInfo2Service = SpringUtils.getBean("equipmentInfo2Service");
  37. // EquipmentInfo3Service equipmentInfo3Service = SpringUtils.getBean("equipmentInfo3Service");
  38. // EquipmentInfo4Service equipmentInfo4Service = SpringUtils.getBean("equipmentInfo4Service");
  39. // EquipmentInfo5Service equipmentInfo5Service = SpringUtils.getBean("equipmentInfo5Service");
  40. // EquipmentInfoDayTopService equipmentInfoDayTopService = SpringUtils.getBean("equipmentInfoDayTopService");
  41. // WtAlysisDayService wtAlysisDayService = SpringUtils.getBean("wtAlysisDayService");
  42. //
  43. // equipmentInfo1Service.calEquipmentInfoDay(c.getTime());
  44. //
  45. //
  46. //
  47. // WindPowerInfo1Service windPowerInfo1Service = SpringUtils.getBean("windPowerInfo1Service");
  48. // WindPowerInfo2Service windPowerInfo2Service = SpringUtils.getBean("windPowerInfo2Service");
  49. // WindPowerInfo3Service windPowerInfo3Service = SpringUtils.getBean("windPowerInfo3Service");
  50. // WindPowerInfo4Service windPowerInfo4Service = SpringUtils.getBean("windPowerInfo4Service");
  51. //// WindPowerInfo5Service windPowerInfo5Service = SpringUtils.getBean("windPowerInfo5Service");
  52. // WindPowerInfo6Service windPowerInfo6Service = SpringUtils.getBean("windPowerInfo6Service");
  53. //
  54. // windPowerInfo1Service.calLineInfoDay(c.getTime());
  55. // windPowerInfo1Service.calProjectInfoDay(c.getTime());
  56. // windPowerInfo1Service.calWindpowerInfoDay(c.getTime());
  57. // windPowerInfo1Service.calCompanyInfoDay(c.getTime());
  58. // windPowerInfo1Service.calRegionInfoDay(c.getTime());
  59. //
  60. //
  61. //
  62. //
  63. // c.add(Calendar.DAY_OF_MONTH, 1);
  64. // System.out.println(end);
  65. // System.out.println("完成一次!。。。。。。");
  66. // }
  67. // System.out.println("设备指标记录调度程序执行结束!。。。。。。");
  68. // end=new Date();
  69. // System.out.println("执行用时"+ DateUtils.secondsDiff(begin,end) +"秒");
  70. // System.out.println(end);
  71. //
  72. //
  73. System.out.println("完成");
  74. }
  75. }