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() {
|
|
}
|
}
|