
66 changed files with 1557 additions and 2 deletions
@ -0,0 +1,50 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogress; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/2/27 15:45 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PushCaseDto { |
||||
|
|
||||
|
private String createBySid; |
||||
|
@ApiModelProperty("创建部门") |
||||
|
private String createDept; |
||||
|
@ApiModelProperty("创建部门sid") |
||||
|
private String createDeptSid; |
||||
|
@ApiModelProperty("创建人") |
||||
|
private String createByName; |
||||
|
@ApiModelProperty("客户名称") |
||||
|
private String customerName; |
||||
|
@ApiModelProperty("客户sid") |
||||
|
private String customerSid; |
||||
|
@ApiModelProperty("贷款人sid") |
||||
|
private String loanSid; |
||||
|
@ApiModelProperty("贷款人") |
||||
|
private String loanName; |
||||
|
@ApiModelProperty("贷款合同编号") |
||||
|
private String loanContractNo; |
||||
|
@ApiModelProperty("资方") |
||||
|
private String bankName; |
||||
|
@ApiModelProperty("资方合同编号") |
||||
|
private String bankContractNo; |
||||
|
@ApiModelProperty("业务来源sid") |
||||
|
private String busSid; |
||||
|
@ApiModelProperty("使用组织sid") |
||||
|
private String useOrgSid; |
||||
|
@ApiModelProperty("使用组织名称") |
||||
|
private String useOrgName; |
||||
|
@ApiModelProperty("使用组织全路径") |
||||
|
private String orgSidPath; |
||||
|
@ApiModelProperty("销售订单sid") |
||||
|
private String salesOrderSid; |
||||
|
private List<PushCaseVehDto> vehList = new ArrayList<>(); |
||||
|
|
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogress; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/2/27 16:04 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PushCaseVehDto { |
||||
|
|
||||
|
private String vinNo; |
||||
|
private String busVinSid; |
||||
|
private String vehMark; |
||||
|
|
||||
|
} |
@ -0,0 +1,34 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressclosed; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_closed") |
||||
|
public class LoanCaseProgressClosed extends BaseEntity { |
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("结案方式") |
||||
|
private String endType; |
||||
|
@ApiModelProperty("结案日期") |
||||
|
private Date endTime; |
||||
|
@ApiModelProperty("结案金额") |
||||
|
private BigDecimal endMoney; |
||||
|
@ApiModelProperty("结案说明") |
||||
|
private String endShows; |
||||
|
@ApiModelProperty("附件") |
||||
|
private String endFiles; |
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressclosed; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程-结案") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressClosed", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressClosed", |
||||
|
fallback = LoanCaseProgressClosedFeignFallback.class) |
||||
|
public interface LoanCaseProgressClosedFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressclosed; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressClosedFeignFallback implements LoanCaseProgressClosedFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,71 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressexecute; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_execute") |
||||
|
public class LoanCaseProgressExecute extends BaseEntity { |
||||
|
@ApiModelProperty("准备执行材料-转执行日期") |
||||
|
private Date prepareTime; |
||||
|
@ApiModelProperty("准备执行材料-材料递交日期") |
||||
|
private Date transferTime; |
||||
|
@ApiModelProperty("准备执行材料-负责人") |
||||
|
private String header; |
||||
|
@ApiModelProperty("准备执行材料-附件") |
||||
|
private String prepareFiles; |
||||
|
@ApiModelProperty("已执行立案-执行立案日期") |
||||
|
private Date executeTime; |
||||
|
@ApiModelProperty("已执行立案-执行案件号") |
||||
|
private String executeCaseNo; |
||||
|
@ApiModelProperty("已执行立案-执行时限") |
||||
|
private String executeDays; |
||||
|
@ApiModelProperty("已执行立案-执行立案金额") |
||||
|
private BigDecimal executeMoney; |
||||
|
@ApiModelProperty("已执行立案-执行回款总金额") |
||||
|
private BigDecimal executeAmountAll; |
||||
|
@ApiModelProperty("已执行立案-执行未回款金额") |
||||
|
private BigDecimal executeNotAmount; |
||||
|
@ApiModelProperty("已执行立案-执行法官") |
||||
|
private String executeJudge; |
||||
|
@ApiModelProperty("列入失信人名单-列入日期") |
||||
|
private Date promiseTime; |
||||
|
@ApiModelProperty("列入失信人名单-附件") |
||||
|
private String promiseFiles; |
||||
|
@ApiModelProperty("查封冻结资产-查封内容") |
||||
|
private String closePart; |
||||
|
@ApiModelProperty("查封冻结资产-查封日期") |
||||
|
private Date closeTime; |
||||
|
@ApiModelProperty("查封冻结资产-财产处置") |
||||
|
private String closeDisposal; |
||||
|
@ApiModelProperty("查封冻结资产-附件") |
||||
|
private String closeFiles; |
||||
|
@ApiModelProperty("终止本次执行-终止日期") |
||||
|
private Date endTime; |
||||
|
@ApiModelProperty("终止本次执行-终止原因") |
||||
|
private String endReason; |
||||
|
@ApiModelProperty("终止本次执行-附件") |
||||
|
private String endFiles; |
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("案件当前环节") |
||||
|
private String caseTache; |
||||
|
@ApiModelProperty("案件当前环节编号") |
||||
|
private String caseTacheNo; |
||||
|
@ApiModelProperty("是否为终止状态") |
||||
|
private String terminate; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressexecute; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressExecute", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressExecute", |
||||
|
fallback = LoanCaseProgressExecuteFeignFallback.class) |
||||
|
public interface LoanCaseProgressExecuteFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressexecute; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressExecuteFeignFallback implements LoanCaseProgressExecuteFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,38 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressexecutemeasure; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_execute_measure") |
||||
|
public class LoanCaseProgressExecuteMeasure extends BaseEntity { |
||||
|
@ApiModelProperty("主表sid(loan_case_progress_execute)") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("执行措施") |
||||
|
private String measure; |
||||
|
@ApiModelProperty("执行日期") |
||||
|
private Date measureTime; |
||||
|
@ApiModelProperty("执行回款金额") |
||||
|
private BigDecimal measureMoney; |
||||
|
@ApiModelProperty("执行说明") |
||||
|
private String measureShows; |
||||
|
@ApiModelProperty("附件") |
||||
|
private String measureFiles; |
||||
|
@ApiModelProperty("操作人") |
||||
|
private String operator; |
||||
|
@ApiModelProperty("操作人Sid") |
||||
|
private String operatorSid; |
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressexecutemeasure; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressExecuteMeasure", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressExecuteMeasure", |
||||
|
fallback = LoanCaseProgressExecuteMeasureFeignFallback.class) |
||||
|
public interface LoanCaseProgressExecuteMeasureFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressexecutemeasure; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressExecuteMeasureFeignFallback implements LoanCaseProgressExecuteMeasureFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,38 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressfees; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_fees") |
||||
|
public class LoanCaseProgressFees extends BaseEntity { |
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("缴费项目") |
||||
|
private String paymentItems; |
||||
|
@ApiModelProperty("缴费时间") |
||||
|
private Date paymentTime; |
||||
|
@ApiModelProperty("缴费金额") |
||||
|
private BigDecimal paymentMoney; |
||||
|
@ApiModelProperty("操作时间") |
||||
|
private Date operatingTime; |
||||
|
@ApiModelProperty("附件") |
||||
|
private String filePath; |
||||
|
@ApiModelProperty("操作人") |
||||
|
private String operator; |
||||
|
@ApiModelProperty("操作人Sid") |
||||
|
private String operatorSid; |
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressfees; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressFees", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressFees", |
||||
|
fallback = LoanCaseProgressFeesFeignFallback.class) |
||||
|
public interface LoanCaseProgressFeesFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressfees; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressFeesFeignFallback implements LoanCaseProgressFeesFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressguarantor; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_guarantor") |
||||
|
public class LoanCaseProgressGuarantor extends BaseEntity { |
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("姓名") |
||||
|
private String name; |
||||
|
@ApiModelProperty("身份证号") |
||||
|
private String idCardNo; |
||||
|
@ApiModelProperty("户籍地址") |
||||
|
private String registerAddress; |
||||
|
@ApiModelProperty("现住址") |
||||
|
private String currentAddress; |
||||
|
@ApiModelProperty("联系电话") |
||||
|
private String mobile; |
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressguarantor; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressGuarantor", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressGuarantor", |
||||
|
fallback = LoanCaseProgressGuarantorFeignFallback.class) |
||||
|
public interface LoanCaseProgressGuarantorFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressguarantor; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressGuarantorFeignFallback implements LoanCaseProgressGuarantorFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,44 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogresspreserve; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_preserve") |
||||
|
public class LoanCaseProgressPreserve extends BaseEntity { |
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("保全类型key") |
||||
|
private String preserveTypeKey; |
||||
|
@ApiModelProperty("保全类型") |
||||
|
private String preserveType; |
||||
|
@ApiModelProperty("保全项目") |
||||
|
private String preserveItems; |
||||
|
@ApiModelProperty("保全日期") |
||||
|
private Date preserveTime; |
||||
|
@ApiModelProperty("保全金额") |
||||
|
private BigDecimal preserveMoney; |
||||
|
@ApiModelProperty("有效期至") |
||||
|
private String dateTo; |
||||
|
@ApiModelProperty("操作时间") |
||||
|
private Date operatingTime; |
||||
|
@ApiModelProperty("附件") |
||||
|
private String filePath; |
||||
|
@ApiModelProperty("操作人") |
||||
|
private String operator; |
||||
|
@ApiModelProperty("操作人Sid") |
||||
|
private String operatorSid; |
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogresspreserve; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressPreserve", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressPreserve", |
||||
|
fallback = LoanCaseProgressPreserveFeignFallback.class) |
||||
|
public interface LoanCaseProgressPreserveFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogresspreserve; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressPreserveFeignFallback implements LoanCaseProgressPreserveFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,118 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogresstrial; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_trial") |
||||
|
public class LoanCaseProgressTrial extends BaseEntity { |
||||
|
//法官信息
|
||||
|
@ApiModelProperty("管辖法院") |
||||
|
private String court; |
||||
|
@ApiModelProperty("法院地址") |
||||
|
private String courtAddress; |
||||
|
@ApiModelProperty("法官") |
||||
|
private String judge; |
||||
|
@ApiModelProperty("案号") |
||||
|
private String caseNumber; |
||||
|
//委派情况
|
||||
|
@ApiModelProperty("律师事务所") |
||||
|
private String lawFirms; |
||||
|
@ApiModelProperty("承办律师") |
||||
|
private String lawer; |
||||
|
@ApiModelProperty("律师联系电话") |
||||
|
private String lawerPhone; |
||||
|
@ApiModelProperty("委托协议附件") |
||||
|
private String agreement; |
||||
|
//待立案
|
||||
|
@ApiModelProperty("待立案-材料提交法院日期") |
||||
|
private Date submitTime; |
||||
|
@ApiModelProperty("待立案-立案所需天数") |
||||
|
private String caseNeedDays; |
||||
|
@ApiModelProperty("待立案-备注") |
||||
|
private String pendingRemarks; |
||||
|
@ApiModelProperty("待立案-立案时效要求天数") |
||||
|
private String pendingDays; |
||||
|
@ApiModelProperty("待立案-附件") |
||||
|
private String pendingFiles; |
||||
|
//已立案
|
||||
|
@ApiModelProperty("已立案-立案日期") |
||||
|
private Date filedTime; |
||||
|
@ApiModelProperty("已立案-立案实际天数") |
||||
|
private String filedDays; |
||||
|
@ApiModelProperty("已立案-备注") |
||||
|
private String filedRemarks; |
||||
|
@ApiModelProperty("已立案-附件") |
||||
|
private String filedFiles; |
||||
|
//待开庭
|
||||
|
@ApiModelProperty("待开庭-开庭所需天数") |
||||
|
private String trialNeedDays; |
||||
|
@ApiModelProperty("待开庭-开庭传票日期") |
||||
|
private Date trialTime; |
||||
|
@ApiModelProperty("待开庭-预计开庭日期") |
||||
|
private Date trialPreTime; |
||||
|
@ApiModelProperty("待开庭-备注") |
||||
|
private String trialRemarks; |
||||
|
@ApiModelProperty("待开庭-附件") |
||||
|
private String trialFiles; |
||||
|
@ApiModelProperty("待开庭-开庭时效要求天数") |
||||
|
private String trialDays; |
||||
|
//已开庭
|
||||
|
@ApiModelProperty("已开庭-一次开庭日期") |
||||
|
private Date alreadyTime; |
||||
|
@ApiModelProperty("已开庭-开庭实际天数") |
||||
|
private String actualDays; |
||||
|
@ApiModelProperty("已开庭-二次开庭日期") |
||||
|
private Date secondTime; |
||||
|
@ApiModelProperty("已开庭-庭审总结") |
||||
|
private String summary; |
||||
|
@ApiModelProperty("已开庭-出判时效要求天数") |
||||
|
private String alreadyDays; |
||||
|
@ApiModelProperty("已开庭-附件") |
||||
|
private String alreadyFiles; |
||||
|
//已判决/调解
|
||||
|
@ApiModelProperty("已判决/调解-判决/调解日期") |
||||
|
private Date verdictTime; |
||||
|
@ApiModelProperty("已判决/调解-结果") |
||||
|
private String verdictResult; |
||||
|
@ApiModelProperty("已判决/调解-金额") |
||||
|
private BigDecimal verdictAmount; |
||||
|
@ApiModelProperty("已判决/调解-领取日期") |
||||
|
private String receiveTime; |
||||
|
@ApiModelProperty("已判决/调解-出判实际天数") |
||||
|
private String verdictDays; |
||||
|
@ApiModelProperty("已判决/调解-备注") |
||||
|
private String verdictRemarks; |
||||
|
@ApiModelProperty("已判决/调解-附件") |
||||
|
private String verdictFiles; |
||||
|
//已生效
|
||||
|
@ApiModelProperty("已生效-生效日期") |
||||
|
private Date effectTime; |
||||
|
@ApiModelProperty("已生效-备注") |
||||
|
private String effectRemarks; |
||||
|
@ApiModelProperty("已生效-附件") |
||||
|
private String effectFiles; |
||||
|
//----------------------------
|
||||
|
@ApiModelProperty("案件当前环节") |
||||
|
private String caseTache; |
||||
|
@ApiModelProperty("案件当前环节编号") |
||||
|
private String caseTacheNo; |
||||
|
@ApiModelProperty("案件当前阶段") |
||||
|
private String caseStage; |
||||
|
@ApiModelProperty("案件当前阶段编号") |
||||
|
private String caseStageNo; |
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogresstrial; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressTrial", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressTrial", |
||||
|
fallback = LoanCaseProgressTrialFeignFallback.class) |
||||
|
public interface LoanCaseProgressTrialFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogresstrial; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressTrialFeignFallback implements LoanCaseProgressTrialFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,39 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressveh; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "案件进程管理", description = "案件进程管理") |
||||
|
@TableName("loan_case_progress_veh") |
||||
|
public class LoanCaseProgressVeh extends BaseEntity { |
||||
|
|
||||
|
@ApiModelProperty("主表sid") |
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("销售订单车辆sid") |
||||
|
private String busVinSid; |
||||
|
@ApiModelProperty("车架号") |
||||
|
private String vinNo; |
||||
|
@ApiModelProperty("车牌号") |
||||
|
private String vehMark; |
||||
|
@ApiModelProperty("车辆状态(已控制、已收回、已处置)") |
||||
|
private String vehStatus; |
||||
|
@ApiModelProperty("挂靠公司") |
||||
|
private String affiliatedCompany; |
||||
|
@ApiModelProperty("挂靠公司Sid") |
||||
|
private String affiliatedCompanySid; |
||||
|
@ApiModelProperty("挂车情况") |
||||
|
private String trailerInfo; |
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressveh; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: 案件进程管理 |
||||
|
* @author: fan |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程") |
||||
|
@FeignClient( |
||||
|
contextId = "anrui-riskcenter-LoanCaseProgressVeh", |
||||
|
name = "anrui-riskcenter", |
||||
|
path = "v1/LoanCaseProgressVeh", |
||||
|
fallback = LoanCaseProgressVehFeignFallback.class) |
||||
|
public interface LoanCaseProgressVehFeign { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loancaseprogressveh; |
||||
|
|
||||
|
import org.springframework.stereotype.Component; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/8/16 14:36 |
||||
|
*/ |
||||
|
@Component |
||||
|
public class LoanCaseProgressVehFeignFallback implements LoanCaseProgressVehFeign { |
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressclosed; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogress.LoanCaseProgress; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressclosed.LoanCaseProgressClosed; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressClosedMapper extends BaseMapper<LoanCaseProgressClosed> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogressclosed.LoanCaseProgressClosedMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,24 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressclosed; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressclosed.LoanCaseProgressClosedFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressClosed") |
||||
|
public class LoanCaseProgressClosedRest implements LoanCaseProgressClosedFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressClosedService loanCaseProgressClosedService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressclosed; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogress.LoanCaseProgress; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressclosed.LoanCaseProgressClosed; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressClosedService extends MybatisBaseService<LoanCaseProgressClosedMapper, LoanCaseProgressClosed> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressexecute; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressclosed.LoanCaseProgressClosed; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecute; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressExecuteMapper extends BaseMapper<LoanCaseProgressExecute> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogressexecute.LoanCaseProgressExecuteMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,24 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressexecute; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecuteFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressExecute") |
||||
|
public class LoanCaseProgressExecuteRest implements LoanCaseProgressExecuteFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressExecuteService loanCaseProgressExecuteService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressexecute; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressclosed.LoanCaseProgressClosed; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecute; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressExecuteService extends MybatisBaseService<LoanCaseProgressExecuteMapper, LoanCaseProgressExecute> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressexecutemeasure; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecute; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecutemeasure.LoanCaseProgressExecuteMeasure; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressExecuteMeasureMapper extends BaseMapper<LoanCaseProgressExecuteMeasure> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogressexecutemeasure.LoanCaseProgressExecuteMeasureMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,25 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressexecutemeasure; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecuteFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecutemeasure.LoanCaseProgressExecuteMeasureFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressExecuteMeasure") |
||||
|
public class LoanCaseProgressExecuteMeasureRest implements LoanCaseProgressExecuteMeasureFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressExecuteMeasureService loanCaseProgressExecuteMeasureService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressexecutemeasure; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecute; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecutemeasure.LoanCaseProgressExecuteMeasure; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressExecuteMeasureService extends MybatisBaseService<LoanCaseProgressExecuteMeasureMapper, LoanCaseProgressExecuteMeasure> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressfees; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecute; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressfees.LoanCaseProgressFees; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressFeesMapper extends BaseMapper<LoanCaseProgressFees> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogressfees.LoanCaseProgressFeesMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,23 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressfees; |
||||
|
|
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressFees") |
||||
|
public class LoanCaseProgressFeesRest implements LoanCaseProgressFeesFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressFeesService loanCaseProgressExecuteService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressfees; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressexecute.LoanCaseProgressExecute; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressfees.LoanCaseProgressFees; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressFeesService extends MybatisBaseService<LoanCaseProgressFeesMapper, LoanCaseProgressFees> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressguarantor; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressfees.LoanCaseProgressFees; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressguarantor.LoanCaseProgressGuarantor; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressGuarantorMapper extends BaseMapper<LoanCaseProgressGuarantor> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogressguarantor.LoanCaseProgressGuarantorMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,24 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressguarantor; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressguarantor.LoanCaseProgressGuarantorFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressGuarantor") |
||||
|
public class LoanCaseProgressGuarantorRest implements LoanCaseProgressGuarantorFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressGuarantorService loanCaseProgressGuarantorService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressguarantor; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressguarantor.LoanCaseProgressGuarantor; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressGuarantorService extends MybatisBaseService<LoanCaseProgressGuarantorMapper, LoanCaseProgressGuarantor> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogresspreserve; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressguarantor.LoanCaseProgressGuarantor; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresspreserve.LoanCaseProgressPreserve; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressPreserveMapper extends BaseMapper<LoanCaseProgressPreserve> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogresspreserve.LoanCaseProgressPreserveMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,25 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogresspreserve; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressguarantor.LoanCaseProgressGuarantorFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresspreserve.LoanCaseProgressPreserveFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressPreserve") |
||||
|
public class LoanCaseProgressPreserveRest implements LoanCaseProgressPreserveFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressPreserveService loanCaseProgressPreserveService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogresspreserve; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressguarantor.LoanCaseProgressGuarantor; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresspreserve.LoanCaseProgressPreserve; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressPreserveService extends MybatisBaseService<LoanCaseProgressPreserveMapper, LoanCaseProgressPreserve> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogresstrial; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresspreserve.LoanCaseProgressPreserve; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresstrial.LoanCaseProgressTrial; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressTrialMapper extends BaseMapper<LoanCaseProgressTrial> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogresstrial.LoanCaseProgressTrialMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,25 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogresstrial; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresspreserve.LoanCaseProgressPreserveFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresstrial.LoanCaseProgressTrialFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressTrial") |
||||
|
public class LoanCaseProgressTrialRest implements LoanCaseProgressTrialFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressTrialService loanCaseProgressTrialService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogresstrial; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresspreserve.LoanCaseProgressPreserve; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresstrial.LoanCaseProgressTrial; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressTrialService extends MybatisBaseService<LoanCaseProgressTrialMapper, LoanCaseProgressTrial> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="com.yxt.anrui.riskcenter.biz.loancaseprogressveh.LoanCaseProgressVehMapper"> |
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,18 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressveh; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresstrial.LoanCaseProgressTrial; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressveh.LoanCaseProgressVeh; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanCaseProgressVehMapper extends BaseMapper<LoanCaseProgressVeh> { |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressveh; |
||||
|
|
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresstrial.LoanCaseProgressTrialFeign; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Api(tags = "案件进程管理") |
||||
|
@RestController |
||||
|
@RequestMapping("v1/LoanCaseProgressVeh") |
||||
|
public class LoanCaseProgressVehRest implements LoanCaseProgressVehFeign { |
||||
|
|
||||
|
@Autowired |
||||
|
private LoanCaseProgressVehService loanCaseProgressVehService; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loancaseprogressveh; |
||||
|
|
||||
|
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign; |
||||
|
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign; |
||||
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogresstrial.LoanCaseProgressTrial; |
||||
|
import com.yxt.anrui.riskcenter.api.loancaseprogressveh.LoanCaseProgressVeh; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: fan |
||||
|
* @date: 2023/8/21 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanCaseProgressVehService extends MybatisBaseService<LoanCaseProgressVehMapper, LoanCaseProgressVeh> { |
||||
|
|
||||
|
@Autowired |
||||
|
private SysUserFeign sysUserFeign; |
||||
|
@Autowired |
||||
|
private SysStaffOrgFeign sysStaffOrgFeign; |
||||
|
@Autowired |
||||
|
private SysOrganizationFeign sysOrganizationFeign; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue