no message

This commit is contained in:
2025-09-02 16:02:43 +08:00
parent 7871f8d437
commit 67bdcd22f0
3 changed files with 7 additions and 7 deletions

View File

@ -114,12 +114,12 @@ public class SendDataServiceImpl implements SendDataService {
return map; return map;
} }
if (company.getCompanyName() == null || company.getCompanyName().isEmpty()){ if (company.getCompany_name() == null || company.getCompany_name().isEmpty()){
map.put("msg","运营商名称不能为空"); map.put("msg","运营商名称不能为空");
map.put("code","500"); map.put("code","500");
return map; return map;
} }
if (company.getContactName() == null || company.getContactName().isEmpty()){ if (company.getContact_name() == null || company.getContact_name().isEmpty()){
map.put("msg","运营商联系人不能为空"); map.put("msg","运营商联系人不能为空");
map.put("code","500"); map.put("code","500");
return map; return map;
@ -138,8 +138,8 @@ public class SendDataServiceImpl implements SendDataService {
} }
CompanyInfo companyInfo = new CompanyInfo(); CompanyInfo companyInfo = new CompanyInfo();
companyInfo.setCompany_name(company.getCompanyName()); companyInfo.setCompany_name(company.getCompany_name());
companyInfo.setContact_name(company.getContactName()); companyInfo.setContact_name(company.getContact_name());
companyInfo.setPhone(company.getPhone()); companyInfo.setPhone(company.getPhone());
companyInfo.setAddress(company.getAddress()); companyInfo.setAddress(company.getAddress());
companyInfo.setIs_delete(company.getIsDelete().toString()); companyInfo.setIs_delete(company.getIsDelete().toString());
@ -187,7 +187,7 @@ public class SendDataServiceImpl implements SendDataService {
map.put("code","500"); map.put("code","500");
return map; return map;
} }
if (storeInfo.getContactName() == null || storeInfo.getContactName().isEmpty()){ if (storeInfo.getContact_name() == null || storeInfo.getContact_name().isEmpty()){
map.put("msg","门店联系人不能为空"); map.put("msg","门店联系人不能为空");
map.put("code","500"); map.put("code","500");
return map; return map;

View File

@ -60,7 +60,7 @@ public class ThirdPartyForwardServiceImpl implements ThirdPartyForwardService {
requestBody.put("appid", appId); requestBody.put("appid", appId);
requestBody.put("access_token",accessToken); requestBody.put("access_token",accessToken);
requestBody.put("Data", JSON.parse(data)); requestBody.put("Data", JSON.parse(data));
requestBody.put("timestamp", System.currentTimeMillis()); //requestBody.put("timestamp", System.currentTimeMillis());

View File

@ -22,7 +22,7 @@
SELECT SELECT
zom.customer_phone AS phone, zom.customer_phone AS phone,
zrb.meal_id AS meal_id, zrb.meal_id AS meal_id,
zom.start_rent_time AS start_date, zom.first_order_time AS start_date,
zom.end_rent_time AS end_date, zom.end_rent_time AS end_date,
zcs.city_id as city, zcs.city_id as city,
zcs.id as store, zcs.id as store,