Commit 8b318575 by zhangxingmin

push

parent 9cecd195
...@@ -96,6 +96,11 @@ public class GenerateExpectedFortuneDto { ...@@ -96,6 +96,11 @@ public class GenerateExpectedFortuneDto {
private String ruleItemBizId; private String ruleItemBizId;
/** /**
* 期交保费
*/
private BigDecimal paymentPremium;
/**
* 获得积分业务员绑定的基本法列表对应计算值 * 获得积分业务员绑定的基本法列表对应计算值
*/ */
private List<AlgorithmResDto> algorithmResDtoList; private List<AlgorithmResDto> algorithmResDtoList;
......
...@@ -316,6 +316,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService ...@@ -316,6 +316,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
.policyNo(brokerDto.getPolicyNo()) .policyNo(brokerDto.getPolicyNo())
//佣金发放状态 0=待出账 1=可出账 2=已出账 //佣金发放状态 0=待出账 1=可出账 2=已出账
.status(FortuneStatusEnum.WAIT.getItemValue()) .status(FortuneStatusEnum.WAIT.getItemValue())
//期交保费
.paymentPremium(brokerDto.getPaymentPremium())
//所属团队 TODO //所属团队 TODO
// .team() // .team()
//所属团队业务ID TODO //所属团队业务ID TODO
...@@ -383,6 +385,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService ...@@ -383,6 +385,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
.policyNo(brokerDto.getPolicyNo()) .policyNo(brokerDto.getPolicyNo())
//佣金发放状态 0=待出账 1=可出账 2=已出账 //佣金发放状态 0=待出账 1=可出账 2=已出账
.status(FortuneStatusEnum.WAIT.getItemValue()) .status(FortuneStatusEnum.WAIT.getItemValue())
//期交保费
.paymentPremium(brokerDto.getPaymentPremium())
//所属团队 TODO //所属团队 TODO
// .team() // .team()
//所属团队业务ID TODO //所属团队业务ID TODO
...@@ -418,8 +422,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService ...@@ -418,8 +422,8 @@ public class ApiExpectedFortuneServiceImpl implements ApiExpectedFortuneService
//保单发佣批次ID //保单发佣批次ID
// fortune.setBatchBizId(fortuneDto.getBatchBizId()); // fortune.setBatchBizId(fortuneDto.getBatchBizId());
fortune.setFortuneBizType("R"); fortune.setFortuneBizType("R");
fortune.setPolicyCurrency(""); fortune.setPolicyCurrency(fortuneDto.getCurrency());
fortune.setPremium(null); fortune.setPremium(fortuneDto.getPaymentPremium());
//转介人姓名 (获得积分的业务员) //转介人姓名 (获得积分的业务员)
fortune.setBroker(fortuneDto.getBroker()); fortune.setBroker(fortuneDto.getBroker());
//转介人业务ID (获得积分的业务员) //转介人业务ID (获得积分的业务员)
......
...@@ -49,6 +49,11 @@ public class QueryPolicyAndBrokerDto { ...@@ -49,6 +49,11 @@ public class QueryPolicyAndBrokerDto {
*/ */
private LocalDate effectiveDate; private LocalDate effectiveDate;
/**
* 期交保费
*/
private BigDecimal paymentPremium;
//======保单信息end======= //======保单信息end=======
//======保单转介人信息start======= //======保单转介人信息start=======
......
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