Browse Source

添加节点类型、标签等

master
陈裕财 4 years ago
parent
commit
6f9e8b23cf
  1. 2
      xm-core/src/main/java/com/xm/core/service/client/MkClient.java

2
xm-core/src/main/java/com/xm/core/service/client/MkClient.java

@ -69,7 +69,7 @@ public class MkClient {
* @return {tipscode:bids-not-enough,msg:投标次数超限},{tipscode:smaxExp-not-enough,msg:投标工作量超限},{tipscode:smaxAt-not-enough,msg:投标金额超限}, * @return {tipscode:bids-not-enough,msg:投标次数超限},{tipscode:smaxExp-not-enough,msg:投标工作量超限},{tipscode:smaxAt-not-enough,msg:投标金额超限},
*/ */
public Tips checkMemberInterests(String userid,BigDecimal at,BigDecimal exp,Integer bids){ public Tips checkMemberInterests(String userid,BigDecimal at,BigDecimal exp,Integer bids){
String url="/mk/mk/mem/memberInterests/checkMemberInterests";
String url="/mk/mk/mem/memberInterests/checkMemberInterests?userid={userid}&at={at}&exp={exp}&bids={bids}";
return callBizService.getForTips(url,map("userid",userid ,"at",at,"exp",exp,"bids",bids)); return callBizService.getForTips(url,map("userid",userid ,"at",at,"exp",exp,"bids",bids));
} }

Loading…
Cancel
Save