
17 changed files with 363 additions and 10 deletions
@ -0,0 +1,22 @@ |
|||||
|
package com.yxt.anrui.base.api.basevehicle; |
||||
|
|
||||
|
import com.yxt.common.core.query.Query; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2023/12/19 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class ManDateQuery implements Query { |
||||
|
private static final long serialVersionUID = 5859730786367349160L; |
||||
|
|
||||
|
|
||||
|
private List<String> vinSids = new ArrayList<>(); |
||||
|
|
||||
|
private String manDate; |
||||
|
} |
@ -0,0 +1,88 @@ |
|||||
|
/********************************************************* |
||||
|
********************************************************* |
||||
|
******************** ******************* |
||||
|
************* ************ |
||||
|
******* _oo0oo_ ******* |
||||
|
*** o8888888o *** |
||||
|
* 88" . "88 * |
||||
|
* (| -_- |) * |
||||
|
* 0\ = /0 * |
||||
|
* ___/`---'\___ * |
||||
|
* .' \\| |// '. *
|
||||
|
* / \\||| : |||// \ *
|
||||
|
* / _||||| -:- |||||- \ * |
||||
|
* | | \\\ - /// | | *
|
||||
|
* | \_| ''\---/'' |_/ | * |
||||
|
* \ .-\__ '-' ___/-. / * |
||||
|
* ___'. .' /--.--\ `. .'___ * |
||||
|
* ."" '< `.___\_<|>_/___.' >' "". * |
||||
|
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
||||
|
* \ \ `_. \_ __\ /__ _/ .-` / / * |
||||
|
* =====`-.____`.___ \_____/___.-`___.-'===== * |
||||
|
* `=---=' * |
||||
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
||||
|
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
||||
|
*********************************************************/ |
||||
|
package com.yxt.anrui.riskcenter.api.loanbecollectionveh; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loanbecollectionapply.LoanBeCollectionFileVo; |
||||
|
import com.yxt.common.core.dto.Dto; |
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* Project: anrui-riskcenter(家访考察) <br/> |
||||
|
* File: LoanHomevisitInvestigateOtherpeoVo.java <br/> |
||||
|
* Class: com.yxt.anrui.riskcenter.api.loanhomevisitinvestigateotherpeo.LoanHomevisitInvestigateOtherpeoVo <br/> |
||||
|
* Description: 家访考察-其他人员 视图数据对象. <br/> |
||||
|
* Copyright: Copyright (c) 2011 <br/> |
||||
|
* Company: https://gitee.com/liuzp315 <br/>
|
||||
|
* Makedate: 2023-08-10 15:13:46 <br/> |
||||
|
* |
||||
|
* @author liupopo |
||||
|
* @version 1.0 |
||||
|
* @since 1.0 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "家访考察-其他人员 视图数据详情", description = "家访考察-其他人员 视图数据详情") |
||||
|
public class LoanBeCollectionVehDbrDto implements Dto { |
||||
|
|
||||
|
private String sid; |
||||
|
|
||||
|
@ApiModelProperty("人员身份key") |
||||
|
private String peoTypeKey; |
||||
|
@ApiModelProperty("人员身份") |
||||
|
private String peoType; // 人员身份
|
||||
|
@ApiModelProperty("姓名") |
||||
|
private String peoName; // 姓名
|
||||
|
@ApiModelProperty("身份证号") |
||||
|
private String idNumber; // 身份证号
|
||||
|
@ApiModelProperty("手机号") |
||||
|
private String mobile; // 手机号
|
||||
|
@ApiModelProperty("户籍地址") |
||||
|
private String peoDomAddress; // 户籍地址
|
||||
|
@ApiModelProperty("现住址") |
||||
|
private String peoPreAddress; // 现住址
|
||||
|
@ApiModelProperty("工作单位") |
||||
|
private String workUnit; // 工作单位
|
||||
|
@ApiModelProperty("职业key") |
||||
|
private String peoCareerKey; // 职业key
|
||||
|
@ApiModelProperty("职业value") |
||||
|
private String peoCareerValue; // 职业value
|
||||
|
@ApiModelProperty("家访考察表sid") |
||||
|
private String mainSid; // 家访考察表sid
|
||||
|
@ApiModelProperty("销售订单车辆sid") |
||||
|
private String saleVehSid; |
||||
|
@ApiModelProperty("身份证附件") |
||||
|
private List<LoanBeCollectionFileVo> sfzFiles = new ArrayList<>(); |
||||
|
@ApiModelProperty("担保协议") |
||||
|
private List<LoanBeCollectionFileVo> dbxyFiles = new ArrayList<>(); |
||||
|
@ApiModelProperty("其他") |
||||
|
private List<LoanBeCollectionFileVo> qtFiles = new ArrayList<>(); |
||||
|
} |
Loading…
Reference in new issue