Commit ce56f943 by fanjiaxin

推客短信发送调试

parent 74506fc6
Pipeline #75548 passed with stages
in 59 seconds
......@@ -4,13 +4,15 @@ import com.netease.yanxuan.missa.client.annotation.MissaClient;
import com.netease.yanxuan.missa.specs.interfaces.response.MissaResponse;
import com.netease.yanxuan.wx.store.sharer.integration.meta.model.bo.UasPushSmsCodeParamBO;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@MissaClient(serviceCode = "logistics-uas")
public interface UasFacade {
@RequestMapping(value = "/push/sms/yanxuan-wx-store-sharer", method = RequestMethod.POST, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
MissaResponse<Void> pushSmsCode(@RequestBody UasPushSmsCodeParamBO param);
@RequestMapping(value = "/push/sms/yanxuan-wx-store-sharer",
method = RequestMethod.POST,
consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
MissaResponse<Void> pushSmsCode(@ModelAttribute UasPushSmsCodeParamBO param);
}
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