Commit 5ce3683a by 邓实川 Committed by chenzg

员工列表优化,电子合同创建个人账户身份类型更新

parent 1090336a
...@@ -10,7 +10,6 @@ import org.springframework.context.annotation.Configuration; ...@@ -10,7 +10,6 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter; import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
......
...@@ -101,13 +101,13 @@ public class DzhtController2 { ...@@ -101,13 +101,13 @@ public class DzhtController2 {
String name = yg.getName(); String name = yg.getName();
Integer type = yg.getZjType(); Integer type = yg.getZjType();
String idType = null; String idType = null;
if (type == 1) { if (type == 0) {
idType = "CRED_PSN_CH_IDCARD";// 大陆身份证 idType = "CRED_PSN_CH_IDCARD";// 大陆身份证
} else if (type == 2) { } else if (type == 1) {
idType = "CRED_PSN_CH_HONGKONG";// 香港通行证 idType = "CRED_PSN_CH_HONGKONG";// 香港通行证
} else if (type == 3) { } else if (type == 2) {
idType = "CRED_PSN_CH_TWCARD";// 台湾通行证 idType = "CRED_PSN_CH_TWCARD";// 台湾通行证
} else if (type == 4) { } else if (type == 3) {
idType = "CRED_PSN_FOREIGN";// 外籍护照 idType = "CRED_PSN_FOREIGN";// 外籍护照
} }
String idNumber = yg.getZjNum(); String idNumber = yg.getZjNum();
......
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