Browse Source

资方特殊字符修改

cuixq 3 năm trước cách đây
mục cha
commit
e314e8c22f

+ 4 - 4
tianhu-system/src/main/java/com/tianhu/system/companyAuth/controller/OwnAuthController.java

@@ -237,7 +237,7 @@ public class OwnAuthController extends BaseController {
         //到期时间
         String scyEndTime = CommonUtil.objToString(map.get("scyEndTime"));
         if(CommonUtil.isEmpty(scyEndTime)||"--".equals(scyStartTime)){
-            return R.fail("到期时间不能为空");
+            return R.fail("营业期限不能为空");
         }
         //企业地址
         String scyAddress = CommonUtil.objToString(map.get("scyAddress"));
@@ -260,10 +260,10 @@ public class OwnAuthController extends BaseController {
         //法人证件号码
         String scyLegalId = CommonUtil.objToString(map.get("scyLegalId"));
         if(CommonUtil.isEmpty(scyLegalId)){
-            return R.fail("法人证不能 为空");
+            return R.fail("法人身份证号不能为空");
         }
         if(!RegularUtil.cardId(scyLegalId)){
-            throw new Exception("法人证格式错误!");
+            throw new Exception("法人身份证号格式错误!");
         }
         //经办人姓名
         String handler = null;
@@ -289,7 +289,7 @@ public class OwnAuthController extends BaseController {
         //经办人手机号
         String phoneNumber =CommonUtil.objToString(map.get("phone"));
         if(CommonUtil.isEmpty(phoneNumber)){
-            return R.fail("经办人手机号不能为空");
+            return R.fail("复核人员联系电话不能为空");
         }
         if(!RegularUtil.phone(phoneNumber)){
             throw new Exception("复核人员联系电话格式不正确!");