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