WaterMeterReadJob.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.zcxk.job.service.jobhandler;
  2. import com.xxl.job.core.biz.model.ReturnT;
  3. import com.xxl.job.core.handler.annotation.XxlJob;
  4. import com.xxl.job.core.log.XxlJobLogger;
  5. import com.xxl.job.core.util.ShardingUtil;
  6. import com.zcxk.job.service.MeterReadRecordService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Component;
  9. @Component
  10. public class WaterMeterReadJob {
  11. @Autowired
  12. MeterReadRecordService meterReadRecordService;
  13. /**
  14. * 每天生成第二天的抄表记录
  15. * @param param
  16. * @return
  17. * @throws Exception
  18. */
  19. @XxlJob("waterMeterReadJobHandler")
  20. public ReturnT<String> waterMeterReadJobHandler(String param) throws Exception {
  21. // 分片参数
  22. ShardingUtil.ShardingVO shardingVO = ShardingUtil.getShardingVo();
  23. XxlJobLogger.log("分片参数:当前分片序号 = {}, 总分片数 = {}", shardingVO.getIndex(), shardingVO.getTotal());
  24. // 业务逻辑
  25. for (int i = 0; i < shardingVO.getTotal(); i++) {
  26. if (i == shardingVO.getIndex()) {
  27. XxlJobLogger.log("第 {} 片, 命中分片开始处理", i);
  28. meterReadRecordService.createMeterReadRecord(param,shardingVO.getIndex(),shardingVO.getTotal());
  29. } else {
  30. XxlJobLogger.log("第 {} 片, 忽略", i);
  31. }
  32. }
  33. return ReturnT.SUCCESS;
  34. }
  35. /**
  36. * 补齐昨天未抄的最近有效数据
  37. * @param param
  38. * @return
  39. * @throws Exception
  40. */
  41. @XxlJob("waterMeterUnReadReplenishJobHandler")
  42. public ReturnT<String> waterMeterUnReadReplenishJobHandler(String param) throws Exception {
  43. meterReadRecordService.waterMeterUnReadReplenishJobHandler(param);
  44. return ReturnT.SUCCESS;
  45. }
  46. }