Commit 166bdf1b by 墨竹

Merge branch 'fixbug_0921' into developer

parents edbd1dbd c04188f6
...@@ -202,7 +202,7 @@ public class ExternalClerkRelatedServiceImpl implements ExternalClerkRelatedServ ...@@ -202,7 +202,7 @@ public class ExternalClerkRelatedServiceImpl implements ExternalClerkRelatedServ
GicMQClient clientInstance = GICMQClientUtil.getClientInstance(); GicMQClient clientInstance = GICMQClientUtil.getClientInstance();
try { try {
JSONObject msgBody = new JSONObject(); JSONObject msgBody = new JSONObject();
msgBody.put("cardNum", member.getCardNum()); msgBody.put("cardNo", member.getCardNum());
msgBody.put("enterpriseId", enterpriseId); msgBody.put("enterpriseId", enterpriseId);
msgBody.put("unionid", unionId); msgBody.put("unionid", unionId);
if (storeDTO != null) { if (storeDTO != null) {
......
...@@ -26,7 +26,10 @@ import com.gic.haoban.manage.api.service.ExternalClerkRelatedApiService; ...@@ -26,7 +26,10 @@ import com.gic.haoban.manage.api.service.ExternalClerkRelatedApiService;
import com.gic.haoban.manage.api.service.WxEnterpriseApiService; import com.gic.haoban.manage.api.service.WxEnterpriseApiService;
import com.gic.haoban.manage.service.config.Config; import com.gic.haoban.manage.service.config.Config;
import com.gic.haoban.manage.service.dao.mapper.*; import com.gic.haoban.manage.service.dao.mapper.*;
import com.gic.haoban.manage.service.entity.*; import com.gic.haoban.manage.service.entity.MemberUnionidRelated;
import com.gic.haoban.manage.service.entity.TabHaobanExternalClerkRelated;
import com.gic.haoban.manage.service.entity.TabHaobanStaffClerkRelation;
import com.gic.haoban.manage.service.entity.TabHaobanWxEnterprise;
import com.gic.haoban.manage.service.entity.ext.MemberStaffRelExtDO; import com.gic.haoban.manage.service.entity.ext.MemberStaffRelExtDO;
import com.gic.haoban.manage.service.pojo.QywxTagSyncInfoPojo; import com.gic.haoban.manage.service.pojo.QywxTagSyncInfoPojo;
import com.gic.haoban.manage.service.service.WxEnterpriseService; import com.gic.haoban.manage.service.service.WxEnterpriseService;
...@@ -268,7 +271,7 @@ public class ExternalClerkRelatedApiServiceImpl implements ExternalClerkRelatedA ...@@ -268,7 +271,7 @@ public class ExternalClerkRelatedApiServiceImpl implements ExternalClerkRelatedA
GicMQClient clientInstance = GICMQClientUtil.getClientInstance(); GicMQClient clientInstance = GICMQClientUtil.getClientInstance();
try { try {
JSONObject msgBody = new JSONObject(); JSONObject msgBody = new JSONObject();
msgBody.put("cardNum", member.getCardNum()); msgBody.put("cardNo", member.getCardNum());
msgBody.put("enterpriseId", enterpriseId); msgBody.put("enterpriseId", enterpriseId);
msgBody.put("unionid", unionId); msgBody.put("unionid", unionId);
if (storeDTO != null) { if (storeDTO != null) {
......
...@@ -683,7 +683,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA ...@@ -683,7 +683,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
GicMQClient clientInstance = GICMQClientUtil.getClientInstance(); GicMQClient clientInstance = GICMQClientUtil.getClientInstance();
try { try {
JSONObject msgBody = new JSONObject(); JSONObject msgBody = new JSONObject();
msgBody.put("cardNum", member.getCardNum()); msgBody.put("cardNo", member.getCardNum());
msgBody.put("enterpriseId", enterpriseId); msgBody.put("enterpriseId", enterpriseId);
msgBody.put("unionid", unionId); msgBody.put("unionid", unionId);
if (storeDTO != null) { if (storeDTO != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment