java110
2023-04-04 af551e9df1e59ef94f57007e1f4e8960ba2f8778
java110-interface/src/main/java/com/java110/intf/common/IFileRelInnerServiceSMO.java
old mode 100644 new mode 100755
@@ -2,6 +2,7 @@
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.file.FileRelDto;
import com.java110.po.file.FileRelPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -17,7 +18,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/fileRelApi")
public interface IFileRelInnerServiceSMO {
@@ -30,6 +31,16 @@
    @RequestMapping(value = "/queryFileRels", method = RequestMethod.POST)
    List<FileRelDto> queryFileRels(@RequestBody FileRelDto fileRelDto);
    @RequestMapping(value = "/saveFileRel", method = RequestMethod.POST)
    public int saveFileRel(@RequestBody FileRelPo fileRelPo);
    @RequestMapping(value = "/updateFileRel", method = RequestMethod.POST)
    public int updateFileRel(@RequestBody FileRelPo fileRelPo);
    @RequestMapping(value = "/deleteFileRel", method = RequestMethod.POST)
    public int deleteFileRel(@RequestBody FileRelPo fileRelPo);
    /**
     * 查询<p>小区楼</p>总记录数
     *