增加国家地区缓存
This commit is contained in:
@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user