新增租赁合同按钮状态

This commit is contained in:
zhangchenbiao
2024-04-30 16:38:21 +08:00
parent 53ca4b576a
commit 992758ada9
7 changed files with 48 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ public class PCTestController {
public ResponseResult<Boolean> sendSms(){
JSONObject templateParam = new JSONObject();
templateParam.put("pointName", "杭州市西湖区");
commonService.sendSms("17681878615", SMSMsgEnum.RENT_CONTRACT_AUDIT_FAIL, null);
commonService.sendSms("17681878615", SMSMsgEnum.RENT_CONTRACT_AUDIT_FAIL, Arrays.asList(templateParam));
return ResponseResult.success(Boolean.FALSE);
}