增加国家地区缓存

This commit is contained in:
2025-11-05 12:20:47 +08:00
parent 382cd30c79
commit b639a5f284
3 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package com.xjrsoft.module.mdm.client;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import com.xjrsoft.common.constant.GlobalConstant;
/**
* @author: ksy
* @since: 2025/11/5
*/
@FeignClient(value = GlobalConstant.CLIENT_PCITC_MDM_NAME, path = GlobalConstant.CLIENT_API_PRE + GlobalConstant.MDM_MODULE_PREFIX + "/countryRegion")
public interface ICountryRegionClient {
@GetMapping("/refreshCache")
void refreshCache();
}