|
@@ -85,7 +85,7 @@ public class MerchantApplyServiceImpl implements MerchantApplyService {
|
|
|
// 插入
|
|
|
MerchantApplyDO merchantApply = BeanUtils.toBean(createReqVO, MerchantApplyDO.class);
|
|
|
merchantApply.setApplyMemberUserId(getLoginUserId());
|
|
|
- merchantApply.setCheckPersonStatus(MerchantApplyCheckPersonStatusEnum.ONE.getStatus());
|
|
|
+ merchantApply.setCheckPersonStatus(MerchantApplyCheckPersonStatusEnum.TWO.getStatus());
|
|
|
|
|
|
// 默认log
|
|
|
if (createReqVO.getLogoUrl() == null || createReqVO.getLogoUrl().isEmpty()) {
|
|
@@ -95,10 +95,10 @@ public class MerchantApplyServiceImpl implements MerchantApplyService {
|
|
|
merchantApplyMapper.insert(merchantApply);
|
|
|
|
|
|
// 发送微信信息到系统用户
|
|
|
- sentWxChantMessageToThSystemUser(merchantApply, MerchantApplyCheckPersonStatusEnum.ONE.getUserid());
|
|
|
+ sentWxChantMessageToThSystemUser(merchantApply, MerchantApplyCheckPersonStatusEnum.TWO.getUserid());
|
|
|
|
|
|
// 推送极光消息
|
|
|
- jPush(merchantApply, MerchantApplyCheckPersonStatusEnum.ONE.getUserid());
|
|
|
+ jPush(merchantApply, MerchantApplyCheckPersonStatusEnum.TWO.getUserid());
|
|
|
|
|
|
// 返回
|
|
|
return merchantApply.getId();
|