java110
2021-03-10 0b9121d1646b57aa4e1e276d0af6acdbeccaaf53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.java110.community.bmo.repair;
 
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.appraise.AppraiseDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
 
/**
 * 保存评价接口类
 */
public interface IAppraiseRepairBMO {
 
    /**
     * 保存接口评价
     * @param appraiseDto
     * @return
     */
    public ResponseEntity<String> appraiseRepair(AppraiseDto appraiseDto);
}