
12 changed files with 213 additions and 0 deletions
@ -0,0 +1,39 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loansettlebankcost; |
||||
|
|
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class LoanSettleBankCost extends BaseEntity { |
||||
|
private static final long serialVersionUID = 1761408170453018031L; |
||||
|
|
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("资方逾期月还") |
||||
|
private BigDecimal price; |
||||
|
@ApiModelProperty("资方当期未到期月还") |
||||
|
private BigDecimal currentNotDuePrice; |
||||
|
@ApiModelProperty("资方未到期金额") |
||||
|
private BigDecimal notDuePrice; |
||||
|
@ApiModelProperty("资方逾期利息") |
||||
|
private BigDecimal bankInterest; |
||||
|
@ApiModelProperty("资方名义价") |
||||
|
private BigDecimal bankNominalPrice; |
||||
|
@ApiModelProperty("资方合同违约金") |
||||
|
private BigDecimal bankContractLiquidated; |
||||
|
@ApiModelProperty("资方其他应收") |
||||
|
private BigDecimal bankOtherReceivable; |
||||
|
@ApiModelProperty("其他应收说明") |
||||
|
private String otherReceivableRemarks; |
||||
|
@ApiModelProperty("资方结清金额") |
||||
|
private BigDecimal bankSettlePrice; |
||||
|
@ApiModelProperty("附件") |
||||
|
private String files; |
||||
|
} |
@ -0,0 +1,47 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loansettlecompanycost; |
||||
|
|
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class LoanSettleCompanyCost extends BaseEntity { |
||||
|
private static final long serialVersionUID = 2861377535077166030L; |
||||
|
|
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("贷款保证金") |
||||
|
private BigDecimal loanDeposit; |
||||
|
@ApiModelProperty("公司逾期月还") |
||||
|
private BigDecimal overduePrice; |
||||
|
@ApiModelProperty("垫资方逾期利息") |
||||
|
private BigDecimal putBankInterest; |
||||
|
@ApiModelProperty("资金占用费") |
||||
|
private BigDecimal funfCost; |
||||
|
@ApiModelProperty("资方逾期利息") |
||||
|
private BigDecimal bankOverInterest; |
||||
|
@ApiModelProperty("公司当期未到期月还") |
||||
|
private BigDecimal companyCurrentNotPrice; |
||||
|
@ApiModelProperty("资方未到期金额") |
||||
|
private BigDecimal bankNotPrice; |
||||
|
@ApiModelProperty("贷款保证金扣罚金额") |
||||
|
private BigDecimal deductionAmount; |
||||
|
@ApiModelProperty("名义价") |
||||
|
private BigDecimal companyNominalPrice; |
||||
|
@ApiModelProperty("合同违约金") |
||||
|
private BigDecimal contractLiquidated; |
||||
|
@ApiModelProperty("公司其他费用") |
||||
|
private BigDecimal companyOtherPrice; |
||||
|
@ApiModelProperty("其他费用说明") |
||||
|
private String otherCostRemarks; |
||||
|
@ApiModelProperty("公司正常结清合计") |
||||
|
private BigDecimal settleAll; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loansettlecompanyreduction; |
||||
|
|
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class LoanSettleCompanyReduction extends BaseEntity { |
||||
|
private static final long serialVersionUID = -4762360887901381444L; |
||||
|
|
||||
|
private String mainSid; |
||||
|
@ApiModelProperty("资金占用费减免") |
||||
|
private BigDecimal fundPenalty; |
||||
|
@ApiModelProperty("贷款保证金扣罚减免") |
||||
|
private BigDecimal depositPenalty; |
||||
|
@ApiModelProperty("其他费用减免") |
||||
|
private BigDecimal otherCost; |
||||
|
@ApiModelProperty("公司减免后结清合计") |
||||
|
private BigDecimal amountTo; |
||||
|
@ApiModelProperty("结清利润") |
||||
|
private BigDecimal profit; |
||||
|
|
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loansettlebankcost; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loansettlebankcost.LoanSettleBankCost; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanSettleBankCostMapper extends BaseMapper<LoanSettleBankCost> { |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
<?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.loansettlebankcost.LoanSettleBankCostMapper"> |
||||
|
</mapper> |
@ -0,0 +1,14 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loansettlebankcost; |
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loansettlebankcost.LoanSettleBankCost; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanSettleBankCostService extends MybatisBaseService<LoanSettleBankCostMapper, LoanSettleBankCost> { |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loansettlecompanycost; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loansettlecompanycost.LoanSettleCompanyCost; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanSettleCompanyCostMapper extends BaseMapper<LoanSettleCompanyCost> { |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
<?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.loansettlecompanycost.LoanSettleCompanyCostMapper"> |
||||
|
</mapper> |
@ -0,0 +1,14 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loansettlecompanycost; |
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loansettlecompanycost.LoanSettleCompanyCost; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanSettleCompanyCostService extends MybatisBaseService<LoanSettleCompanyCostMapper, LoanSettleCompanyCost> { |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loansettlecompanyreduction; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.yxt.anrui.riskcenter.api.loansettlecompanyreduction.LoanSettleCompanyReduction; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Mapper |
||||
|
public interface LoanSettleCompanyReductionMapper extends BaseMapper<LoanSettleCompanyReduction> { |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
<?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.loansettlecompanyreduction.LoanSettleCompanyReductionMapper"> |
||||
|
</mapper> |
@ -0,0 +1,15 @@ |
|||||
|
package com.yxt.anrui.riskcenter.biz.loansettlecompanyreduction; |
||||
|
|
||||
|
import com.yxt.anrui.riskcenter.api.loansettlecompanyreduction.LoanSettleCompanyReduction; |
||||
|
import com.yxt.common.base.service.MybatisBaseService; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/2/6 |
||||
|
**/ |
||||
|
@Service |
||||
|
public class LoanSettleCompanyReductionService extends MybatisBaseService<LoanSettleCompanyReductionMapper, LoanSettleCompanyReduction> { |
||||
|
} |
Loading…
Reference in new issue