cheng
2023-05-13 f367ca7772c3cad36a6f2aed5c4b278451fb4e7b
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) {
 
    }
}