文件名从 Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/feign/lCodeKeyattrrepeatClient.java 修改 |
| | |
| | | */ |
| | | 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; |
| | |
| | | @FeignClient( |
| | | value = "ubcs-code" |
| | | ) |
| | | public interface lCodeKeyattrrepeatClient { |
| | | public interface lCodeKeyAttrRepeatClient { |
| | | |
| | | String API_PREFIX = "/codekey"; |
| | | String TOP = API_PREFIX + "/keylist"; |
| | |
| | | * @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); |
| | | |
| | | } |