Commit d422d9d6 authored by hanfeng's avatar hanfeng

修改车型管理

parent 26f23537
...@@ -311,13 +311,13 @@ public class CertificationService { ...@@ -311,13 +311,13 @@ public class CertificationService {
ObjectRestResponse.createFailedResult(ResultCode.FAILED_CODE, "证件号不一致"); ObjectRestResponse.createFailedResult(ResultCode.FAILED_CODE, "证件号不一致");
} }
//map携带身份证和姓名进行认证
Map<String, String> authMap = new HashMap<>(); Map<String, String> authMap = new HashMap<>();
authMap.put(idCardName, (String) frontData.get(numberName)); authMap.put(idCardName, (String) frontData.get(numberName));
authMap.put(cName, (String) frontData.get(cName)); authMap.put(cName, (String) frontData.get(cName));
//3.认证 //3.调用接口进行认证
String result = certificate(authMap); String result = certificate(authMap);
...@@ -325,6 +325,8 @@ public class CertificationService { ...@@ -325,6 +325,8 @@ public class CertificationService {
if (!StringUtils.isBlank(result)) { if (!StringUtils.isBlank(result)) {
Map<String, Object> map = (Map<String, Object>) JSONObject.parse(result); Map<String, Object> map = (Map<String, Object>) JSONObject.parse(result);
System.out.println(map.get(certifRet)); System.out.println(map.get(certifRet));
......
package com.xxfc.platform.vehicle.pojo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class VehicleModelQueryCondition {
@ApiModelProperty(value = "当前页")
private Integer page;
@ApiModelProperty(value = "每页条数")
private Integer limit;
@ApiModelProperty(value = "房车型号")
private String vehileModel;
@ApiModelProperty(value = "房车名")
private String vehileName;
@ApiModelProperty(value = "乘卧数")
private String takeALieTheNumber;
}
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
</if> </if>
<if test="vmqc.takeAlieTheNumber!=null and vmqc.takeAlieTheNumber!=''"> <if test="vmqc.takeAlieTheNumber!=null and vmqc.takeAlieTheNumber!=''">
and and v.keyword like CONCAT('%,',#{vmqc.takeAlieTheNumber},',%')
</if> </if>
......
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