Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/feign/lCodeKeyAttrRepeatClient.java
文件名从 Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/feign/lCodeKeyattrrepeatClient.java 修改
@@ -16,7 +16,7 @@
 */
package com.vci.ubcs.code.feign;
import com.vci.ubcs.code.entity.CodeKeyattrrepeatEntity;
import com.vci.ubcs.code.entity.CodeKeyAttrRepeat;
import org.springblade.core.mp.support.BladePage;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
@@ -31,7 +31,7 @@
@FeignClient(
    value = "ubcs-code"
)
public interface lCodeKeyattrrepeatClient {
public interface lCodeKeyAttrRepeatClient {
    String API_PREFIX = "/codekey";
    String TOP = API_PREFIX + "/keylist";
@@ -44,6 +44,6 @@
     * @return BladePage
     */
    @GetMapping(TOP)
    BladePage<CodeKeyattrrepeatEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size);
    BladePage<CodeKeyAttrRepeat> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size);
}