Commit 546708fa by zhangxingmin

push

parent 2dc97703
...@@ -21,6 +21,11 @@ public class AlgorithmCollectResDto { ...@@ -21,6 +21,11 @@ public class AlgorithmCollectResDto {
private String clientUserName; private String clientUserName;
/** /**
* 介绍费占比
*/
private String brokerRatio;
/**
* 发佣期数(1=第一年; 2=第二年; 3=第三年; 4=第四年; 5=第五年) * 发佣期数(1=第一年; 2=第二年; 3=第三年; 4=第四年; 5=第五年)
*/ */
private Integer fortunePeriod; private Integer fortunePeriod;
......
...@@ -570,6 +570,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService ...@@ -570,6 +570,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
LocalDateTime actualThawingTime = baseThawingTime.plusYears(resDto.getFortunePeriod() - 1); LocalDateTime actualThawingTime = baseThawingTime.plusYears(resDto.getFortunePeriod() - 1);
//积分解冻时间(受发佣期数影响,第一年就是冷静期结束日期,第二年冷静期结束日期+1年,以此类推) //积分解冻时间(受发佣期数影响,第一年就是冷静期结束日期,第二年冷静期结束日期+1年,以此类推)
resDto.setThawingTime(actualThawingTime); resDto.setThawingTime(actualThawingTime);
//介绍费占比
resDto.setBrokerRatio(brokerDto.getBrokerRatio());
resDto.setAlgorithmResDtoList(result.getData()); resDto.setAlgorithmResDtoList(result.getData());
collectResDtos.add(resDto); collectResDtos.add(resDto);
......
...@@ -86,5 +86,10 @@ public class QueryPolicyAndBrokerDto { ...@@ -86,5 +86,10 @@ public class QueryPolicyAndBrokerDto {
* 所属团队业务id * 所属团队业务id
*/ */
private String teamBizId; private String teamBizId;
/**
* 介绍费占比
*/
private String brokerRatio;
//======保单转介人信息end======= //======保单转介人信息end=======
} }
...@@ -88,7 +88,7 @@ public class CalmTask implements Serializable { ...@@ -88,7 +88,7 @@ public class CalmTask implements Serializable {
private String brokerName; private String brokerName;
/** /**
* 汇率转换前佣金值(积分值) * 汇率转换前佣金值(积分值)(增量积分值)
*/ */
@TableField("fyc") @TableField("fyc")
private BigDecimal fyc; private BigDecimal fyc;
...@@ -100,7 +100,7 @@ public class CalmTask implements Serializable { ...@@ -100,7 +100,7 @@ public class CalmTask implements Serializable {
private BigDecimal exchangeRate; private BigDecimal exchangeRate;
/** /**
* 汇率转换后佣金值(积分值) * 汇率转换后佣金值(积分值)(增量积分值)
*/ */
@TableField("after_fyc") @TableField("after_fyc")
private BigDecimal afterFyc; private BigDecimal afterFyc;
......
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