yanghb
2025-01-07 1ea7e38d7d2152012db3f49934e84d164a07d613
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zzg.system.service.state.impl;
 
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
 
@Service
public class DeptTaskService {
    @Scheduled(cron = "0 0/5 * * * ?")
    @CacheEvict(value = "selectMapDeptById", allEntries = true)
    public void getTemplateElementPropertyByType() {
 
    }
}