首次提交
Showing
4 changed files
with
13 additions
and
6 deletions
... | @@ -12,7 +12,7 @@ public class QysTask { | ... | @@ -12,7 +12,7 @@ public class QysTask { |
12 | @Autowired | 12 | @Autowired |
13 | private EciService eciService; | 13 | private EciService eciService; |
14 | 14 | ||
15 | @Scheduled(cron="0 0/1 * * * ?") | 15 | @Scheduled(cron="0 0/10 * * * ?") |
16 | public void accessCreateContract() { | 16 | public void accessCreateContract() { |
17 | System.out.println("===========创建合同定时任务进来了========="); | 17 | System.out.println("===========创建合同定时任务进来了========="); |
18 | eciService.accessCreateContract(); | 18 | eciService.accessCreateContract(); | ... | ... |
... | @@ -510,6 +510,9 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen | ... | @@ -510,6 +510,9 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen |
510 | arrList.remove(qlr[k]); | 510 | arrList.remove(qlr[k]); |
511 | String gyr = StringUtils.join(arrList.toArray(), ","); | 511 | String gyr = StringUtils.join(arrList.toArray(), ","); |
512 | if (StringUtils.isNotBlank(qlqtzk)) { | 512 | if (StringUtils.isNotBlank(qlqtzk)) { |
513 | if(((String)map.get("BDCDYH")).contains("GX") || ((String)map.get("ZL")).contains("柴房") ){ | ||
514 | qlqtzk=qlqtzk.substring(qlqtzk.indexOf(";")+1); | ||
515 | } | ||
513 | String[] qlzkInfo = qlqtzk.split(";"); | 516 | String[] qlzkInfo = qlqtzk.split(";"); |
514 | for (int j = 0; j < qlzkInfo.length; j++) { | 517 | for (int j = 0; j < qlzkInfo.length; j++) { |
515 | if (qlzkInfo[j].contains("共有情况")) { | 518 | if (qlzkInfo[j].contains("共有情况")) { |
... | @@ -565,6 +568,9 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen | ... | @@ -565,6 +568,9 @@ public class EciServiceImpl extends ServiceImpl<ElecLicenseInfoMapper, ElecLicen |
565 | arrList.remove(qlr[k]); | 568 | arrList.remove(qlr[k]); |
566 | String gyr=StringUtils.join(arrList.toArray(),","); | 569 | String gyr=StringUtils.join(arrList.toArray(),","); |
567 | if(StringUtils.isNotBlank(qlqtzk)){ | 570 | if(StringUtils.isNotBlank(qlqtzk)){ |
571 | if(((String)map.get("BDCDYH")).contains("GX") || ((String)map.get("ZL")).contains("柴房") ){ | ||
572 | qlqtzk=qlqtzk.substring(qlqtzk.indexOf(";")+1); | ||
573 | } | ||
568 | String[] qlzkInfo = qlqtzk.split(";"); | 574 | String[] qlzkInfo = qlqtzk.split(";"); |
569 | for (int j = 0; j < qlzkInfo.length; j++) { | 575 | for (int j = 0; j < qlzkInfo.length; j++) { |
570 | if (qlzkInfo[j].contains("共有情况")) { | 576 | if (qlzkInfo[j].contains("共有情况")) { | ... | ... |
... | @@ -55,11 +55,11 @@ mybatis-plus: | ... | @@ -55,11 +55,11 @@ mybatis-plus: |
55 | call-setters-on-nulls: true | 55 | call-setters-on-nulls: true |
56 | log-impl: org.apache.ibatis.logging.stdout.StdOutImpl | 56 | log-impl: org.apache.ibatis.logging.stdout.StdOutImpl |
57 | app: | 57 | app: |
58 | hostUrl: http://172.16.56.60:9182 | 58 | hostUrl: http://172.16.56.41:9182 |
59 | bdcdjzmlc: 2905681381004489569 | 59 | bdcdjzmlc: 2890537670326468622 |
60 | bdcqzslc: 2905684509636506505 | 60 | bdcqzslc: 2890537800123400234 |
61 | AppToken: lv2M681jcM | 61 | AppToken: OAduCx5qJD |
62 | AppSecret: mZWAKA2p7vvnTZMNuUKRHaCL3LTgHA | 62 | AppSecret: DifsZNwDnamuRh9jS0gSOTJFvmmKtT |
63 | areacode: 610702 | 63 | areacode: 610702 |
64 | 64 | ||
65 | 65 | ... | ... |
... | @@ -125,6 +125,7 @@ | ... | @@ -125,6 +125,7 @@ |
125 | where c.del_flag = '0' | 125 | where c.del_flag = '0' |
126 | and c.isxydzzz = '1' | 126 | and c.isxydzzz = '1' |
127 | and c.iscjdzzz = '0' | 127 | and c.iscjdzzz = '0' |
128 | and c.ywh like '20%' | ||
128 | and dbsj is not null ) where rn=1 | 129 | and dbsj is not null ) where rn=1 |
129 | </select> | 130 | </select> |
130 | 131 | ... | ... |
-
Please register or sign in to post a comment