|
|
@@ -0,0 +1,67 @@ |
|
|
|
package com.qtzl.alterSales.zt.vo; |
|
|
|
|
|
|
|
import com.google.common.collect.Maps; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
public class UserInfoAuthenticationRequestVo extends XZRequestVo{ |
|
|
|
|
|
|
|
/*** 手机号*/ |
|
|
|
private String mobile; |
|
|
|
/*** 姓名*/ |
|
|
|
private String name; |
|
|
|
|
|
|
|
/*** 用户证件类型*/ |
|
|
|
private Integer userIdType; |
|
|
|
/*** 证件号码*/ |
|
|
|
private String id; |
|
|
|
|
|
|
|
public String getMobile() { |
|
|
|
return mobile; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMobile(String mobile) { |
|
|
|
this.mobile = mobile; |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
return name; |
|
|
|
} |
|
|
|
|
|
|
|
public void setName(String name) { |
|
|
|
this.name = name; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getUserIdType() { |
|
|
|
return userIdType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUserIdType(Integer userIdType) { |
|
|
|
this.userIdType = userIdType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getId() { |
|
|
|
return id; |
|
|
|
} |
|
|
|
|
|
|
|
public void setId(String id) { |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
public Map<String, String> getRequestParam() { |
|
|
|
Map<String, String> map = Maps.newHashMap(); |
|
|
|
if (mobile != null){ |
|
|
|
map.put("mobile", mobile.toString()); |
|
|
|
} |
|
|
|
if (name != null){ |
|
|
|
map.put("name", name.toString()); |
|
|
|
} |
|
|
|
if (userIdType != null){ |
|
|
|
map.put("userIdType", userIdType.toString()); |
|
|
|
} |
|
|
|
if (id != null){ |
|
|
|
map.put("id", id.toString()); |
|
|
|
} |
|
|
|
map.put("uniqueKey", getUniqueKey().toString()); |
|
|
|
return map; |
|
|
|
} |
|
|
|
} |