Package net.risesoft.api.extend
Class ItemSmsHttpApiImpl
- java.lang.Object
-
- net.risesoft.api.extend.ItemSmsHttpApiImpl
-
- All Implemented Interfaces:
ItemSmsHttpApi
@RestController @RequestMapping(value="/services/rest/itemSmsHttp", produces="application/json") @Primary public class ItemSmsHttpApiImpl extends Object implements ItemSmsHttpApi短信接口- Author:
- zhangchongjie, mengjuhua
- Date:
- 2022/12/28
-
-
Constructor Summary
Constructors Constructor Description ItemSmsHttpApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Boolean>sendSmsHttpList(String tenantId, String userId, List<String> mobile, String smsContent, String systemName)向多人发送短信(http形式)
-
-
-
Method Detail
-
sendSmsHttpList
public net.risesoft.pojo.Y9Result<Boolean> sendSmsHttpList(@RequestParam String tenantId, @RequestParam String userId, @RequestParam List<String> mobile, @RequestParam String smsContent, String systemName) throws Exception
向多人发送短信(http形式)- Specified by:
sendSmsHttpListin interfaceItemSmsHttpApi- Parameters:
tenantId- 租户iduserId- 发送人idmobile- 接收人手机号smsContent- 短信内容systemName- 系统名称- Returns:
Y9Result<Boolean>通用请求返回对象- Throws:
Exception- Since:
- 9.6.6
-
-