瀏覽代碼

* bug 修复

顾绍勇 5 年之前
父節點
當前提交
a98cce0c06

+ 5
- 0
src/main/java/com/huiju/estateagents/common/CommConstant.java 查看文件

@@ -886,4 +886,9 @@ public class CommConstant {
886 886
      * 人员类型---财务
887 887
      */
888 888
     public static final String FINANCE = "finance";
889
+
890
+    /**
891
+     * 审核状态-审核中
892
+     */
893
+    public static final String CHECK_STATUS_CHECKING = "checking";
889 894
 }

+ 3
- 0
src/main/java/com/huiju/estateagents/redpack/service/impl/TaOrgAccountServiceImpl.java 查看文件

@@ -87,6 +87,9 @@ public class TaOrgAccountServiceImpl extends ServiceImpl<TaOrgAccountMapper, TaO
87 87
     @Autowired
88 88
     SMSUtils smsUtils;
89 89
 
90
+    @Autowired
91
+    private TaOrgAccountBlockedMapper taOrgAccountBlockedMapper;
92
+
90 93
     @Override
91 94
     @Transactional(rollbackFor = {RuntimeException.class})
92 95
     public ResponseBean rechargeAccount(String accountId, TaOrgAccount taOrgAccount, Integer orgId, Integer userId) {