美文网首页
service里调别人提供的接口

service里调别人提供的接口

作者: 仰望天堂_e6c6 | 来源:发表于2018-08-13 10:45 被阅读0次

@Service

public interface MssmService {

//http头

@Headers({"Content-Type: application/json","Accept: application/json"})

//接口地址

@RequestLine("POST /mssm/.../api/msspReportList?customerNum={var1}&date={var2}&type={var3}&sort={var4}")

    ReturnResult getReportList(@Param(value ="var1") String var1, @Param(value ="var2") String var2, @Param(value ="var3") String var3, @Param(value ="var4") String var4);

}

相关文章

网友评论

      本文标题:service里调别人提供的接口

      本文链接:https://www.haomeiwen.com/subject/xhpybftx.html