代码提交
This commit is contained in:
parent
f88e3b9709
commit
5df4d70211
|
@ -29,6 +29,9 @@ public class ServiceProjectSecurityUserPagerVo {
|
||||||
@Schema(description = "名称")
|
@Schema(description = "名称")
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
@Schema(description = "照片")
|
||||||
|
private String photo;
|
||||||
|
|
||||||
@Desensitized(value = DesensitizedUtil.DesensitizedType.MOBILE_PHONE, keepOriginalField = true)
|
@Desensitized(value = DesensitizedUtil.DesensitizedType.MOBILE_PHONE, keepOriginalField = true)
|
||||||
@Schema(description = "手机号")
|
@Schema(description = "手机号")
|
||||||
private String telephone;
|
private String telephone;
|
||||||
|
@ -51,6 +54,8 @@ public class ServiceProjectSecurityUserPagerVo {
|
||||||
|
|
||||||
@Schema(description = "保安证号")
|
@Schema(description = "保安证号")
|
||||||
private String securityNumber;
|
private String securityNumber;
|
||||||
|
@Schema(description = "无证说明")
|
||||||
|
private String noSecurityNumberDesc;
|
||||||
|
|
||||||
@Schema(description = "家庭住址")
|
@Schema(description = "家庭住址")
|
||||||
private String homeAddress;
|
private String homeAddress;
|
||||||
|
|
|
@ -20,7 +20,7 @@ import org.springframework.stereotype.Component;
|
||||||
@Component
|
@Component
|
||||||
public class SecurityAssociationDockingServiceTask {
|
public class SecurityAssociationDockingServiceTask {
|
||||||
|
|
||||||
private static final String BASE_HOST = "http://tkgl.3589hn.cn";
|
private static final String BASE_HOST = "http://baxh.3589hn.cn";
|
||||||
|
|
||||||
private static String TOKEN;
|
private static String TOKEN;
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ public class SecurityAssociationDockingServiceTask {
|
||||||
public void getToken() {
|
public void getToken() {
|
||||||
JSONObject params = new JSONObject();
|
JSONObject params = new JSONObject();
|
||||||
params.put("appid", "anfang");
|
params.put("appid", "anfang");
|
||||||
params.put("appkey", "fcfefda716dc4760af44973bcf157a01");
|
params.put("appkey", "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCg");
|
||||||
//创建请求
|
//创建请求
|
||||||
HttpRequest request = HttpUtil.createPost(BASE_HOST + "/api/security/get_token");
|
HttpRequest request = HttpUtil.createPost(BASE_HOST + "/api/security/get_token");
|
||||||
//设置参数
|
//设置参数
|
||||||
|
|
Loading…
Reference in New Issue