ludc
2023-07-07 c0025985707e90ef01e4a178691c2609ba0459e5
Source/UBCS/ubcs-service-api/ubcs-dict-api/src/main/java/com/vci/ubcs/system/feign/IDictBizClient.java
@@ -22,6 +22,7 @@
import com.vci.ubcs.system.entity.DictBiz;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
@@ -79,7 +80,7 @@
    * @param dictBiz 字典数据
    * @return
    */
   @GetMapping(CHECK_VALUE)
   R getCheck(@Valid @RequestBody DictBiz dictBiz);
   @PostMapping(CHECK_VALUE)
   R getCheck(@RequestBody DictBiz dictBiz);
}