|
|
|
@@ -62,10 +62,11 @@ public class WxMsgRecordController extends BaseController { |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@GetMapping(value = "/resendMsg") |
|
|
|
public ResultData resendMsg(String x, Integer msgType) { |
|
|
|
public ResultData resendMsg(String x, String tenantId, Integer msgType) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxMsgRecordController::resendMsg"); |
|
|
|
if("xll1dxx1314".equals(x)){ |
|
|
|
TenantEntity tenantEntity = getTenantInfo(); |
|
|
|
TenantEntity tenantEntity = new TenantEntity(); |
|
|
|
tenantEntity.setTenantId(tenantId); |
|
|
|
WxMsgRecord msgRecord = new WxMsgRecord(); |
|
|
|
msgRecord.setMsgType(msgType); |
|
|
|
msgRecord.updateTenantInfo(tenantEntity); |
|
|
|
|