This commit is contained in:
zhaokaiyao@91isoft.com
2021-12-31 09:47:11 +08:00
parent b0cd4806c4
commit 692bffa7d0
2 changed files with 11 additions and 4 deletions
@@ -126,7 +126,7 @@ public class ScheduledJob {
for (String s : item.getSSRQ().split(",")) { for (String s : item.getSSRQ().split(",")) {
String pattern = "^\\d{4}-\\d{1,2}-\\d{1,2}"; String pattern = "^\\d{4}-\\d{1,2}-\\d{1,2}$";
Pattern r = Pattern.compile(pattern); Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(s); Matcher m = r.matcher(s);
@@ -29,7 +29,7 @@
FROM FROM
warning_date warning_date
WHERE WHERE
DATE_FORMAT(SSRQ, '%Y-%m-%d') > DATE_FORMAT(now(), '%Y-%m-%d') DATE_FORMAT(SSRQ, '%Y-%m-%d') < DATE_FORMAT(now(), '%Y-%m-%d')
) )
OR OR
@@ -39,7 +39,7 @@
FROM FROM
warning_date warning_date
WHERE WHERE
DATE_FORMAT(SSRQ, '%Y-%m-%d') > DATE_FORMAT(now(), '%Y-%m-%d') DATE_FORMAT(SSRQ, '%Y-%m-%d') < DATE_FORMAT(now(), '%Y-%m-%d')
) )
</delete> </delete>
@@ -79,12 +79,15 @@
<select id="getWarningDate" resultType="com.adc.da.slrs.sarStandWarning.entity.WarningDate"> <select id="getWarningDate" resultType="com.adc.da.slrs.sarStandWarning.entity.WarningDate">
select A.* from
(
select attr.STAND_ID as lawId,'-1' as itemId,'SSRQ' as timeName, select attr.STAND_ID as lawId,'-1' as itemId,'SSRQ' as timeName,
SSRQ as SSRQ SSRQ as SSRQ
from sar_stand_attr_info attr from sar_stand_attr_info attr
WHERE WHERE
SSRQ REGEXP #{termStr} SSRQ REGEXP #{termStr}
UNION ALL UNION ALL
@@ -119,6 +122,10 @@
from sar_stand_items item from sar_stand_items item
WHERE WHERE
XCXSSRQ REGEXP #{termStr} XCXSSRQ REGEXP #{termStr}
) AS A
left join sar_standards_info as sarInfo
on sarInfo.id=A.lawId
where sarInfo.valid_flag = '0'
</select> </select>