许鹏程
2023-05-17 f4ff3e1a24345d9a61b048591daeead0d0a76641
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.product.face.service;
 
import com.product.core.service.support.AbstractBaseService;
import org.springframework.stereotype.Service;
 
/**
 * @Author cheng
 * @Date 2023/4/24 17:06
 * @Desc 表单缓存
 */
@Service
public class FaceCacheService extends AbstractBaseService {
 
    public final static String FACE_CACHE_KEY = "system:face:";
 
    public void refreshCache() {
 
    }
 
    public void refreshCache(String uuid) {
 
    }
}