|
@@ -0,0 +1,50 @@
|
|
|
+package com.gyee.runeconomy.service.Application;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay5;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay5Service;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class ApplicationService {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IProEconPowerstationInfoDay5Service proEconPowerstationInfoDay5Service;
|
|
|
+ public Map bulletin(String wpId) throws Exception {
|
|
|
+
|
|
|
+ Map<String,List> map = new HashMap<>();
|
|
|
+ // 获取当前日期 暂时
|
|
|
+ Date currentDate = new Date();
|
|
|
+
|
|
|
+ List<ProEconPowerstationInfoDay5> qwt = null;
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> qw = new QueryWrapper<>();
|
|
|
+ if (wpId.equals("KGDL_FGS0")){
|
|
|
+ qw.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS-1", "SXJ_KGDL_FLFD_ZGS-2");
|
|
|
+ } else if (wpId.equals("KGDL_FGS-1")) {
|
|
|
+ qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_FLFD_ZGS-1");
|
|
|
+ } else if (wpId.equals("KGDL_FGS-2")) {
|
|
|
+ qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS-2");
|
|
|
+ } else if (wpId.equals("SXJ_RGN0")) {
|
|
|
+ qw.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1", "SXJ_RGN-2");
|
|
|
+ } else if (wpId.equals("SXJ_RGN-1")) {
|
|
|
+ qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
|
|
|
+ }else if (wpId.equals("SXJ_RGN-2")) {
|
|
|
+ qw.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
|
|
|
+ }
|
|
|
+// qw.lambda().between(ProEconPowerstationInfoDay5::getRecordDate, beginDate8, endDate8);
|
|
|
+ qw.lambda().like(ProEconPowerstationInfoDay5::getRecordDate,currentDate);
|
|
|
+
|
|
|
+ qwt = proEconPowerstationInfoDay5Service.list(qw);
|
|
|
+
|
|
|
+ map.put("ri",qwt);
|
|
|
+
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+}
|