Commit 9eb13e08 by liyanlin

fix

parent a9885f4d
......@@ -2,6 +2,7 @@ package com.bailuntec.api.bailuntec.mjcg;
import com.bailuntec.api.bailuntec.mjcg.resp.MjgysResult;
import com.bailuntec.api.bailuntec.mjcg.resp.SupofferLogResp;
import io.swagger.annotations.ApiOperation;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
......@@ -29,5 +30,7 @@ public interface MjgysApi {
* @return
*/
@GetMapping("/api/SupofferLog")
MjgysResult<List<SupofferLogResp>> SupofferLog(@RequestParam String btime, @RequestParam String etime);
@ApiOperation("")
MjgysResult<List<SupofferLogResp>> supofferLog(@RequestParam("btime") String btime,
@RequestParam("etime") String etime);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment