魏超 5 anos atrás
pai
commit
98ff8d3ea6

+ 1
- 1
src/main/java/com/huiju/estateagents/sample/controller/TaH5DemandController.java Ver arquivo

@@ -149,7 +149,7 @@ public class TaH5DemandController extends BaseController {
149 149
             if (sampleContactList.size() > 0) {
150 150
                 List<TaContact> taContactList = taContactService.list(new QueryWrapper<TaContact>().in("contact_id", sampleContactList.stream().map(TaSampleContact::getContactId).collect(Collectors.toList())));
151 151
                 taH5Sample.setTaContactList(taContactList);
152
-                String[] smsParams = {taH5Demand.getDemandStatus().toString(), taH5Demand.getRemark()};
152
+                String[] smsParams = {taH5Sample.getSampleName(), taH5Demand.getOrgName() + taH5Demand.getOrderer() + taH5Demand.getPhone()};
153 153
                 for (TaContact taContact : taContactList){
154 154
                     sendSmsMessage(taContact.getPhone(), CommConstant.MESSAGE_CONTENT_OF_DEMAND, smsParams);
155 155
                 }