Commit 565a0e7c by zhangxingmin

push

parent b8be1320
...@@ -251,6 +251,8 @@ public class ApiExpectedFortuneAsyncService { ...@@ -251,6 +251,8 @@ public class ApiExpectedFortuneAsyncService {
agentDetailFyc.setCommissionName(algorithmResDto.getItemName()); agentDetailFyc.setCommissionName(algorithmResDto.getItemName());
//业务员ID //业务员ID
agentDetailFyc.setAgentId(resDto.getClientUserBizId()); agentDetailFyc.setAgentId(resDto.getClientUserBizId());
//业务员姓名
agentDetailFyc.setAgentName(resDto.getClientUserName());
//积分提供的保单号 //积分提供的保单号
agentDetailFyc.setPolicyNo(policyNo); agentDetailFyc.setPolicyNo(policyNo);
//发佣期数 //发佣期数
......
...@@ -42,6 +42,12 @@ public class AgentDetailFyc implements Serializable { ...@@ -42,6 +42,12 @@ public class AgentDetailFyc implements Serializable {
private String agentId; private String agentId;
/** /**
* 业务员姓名
*/
@TableField("agent_name")
private String agentName;
/**
* 积分来源类型:销售佣金、一级管理佣金、二级管理佣金、辅导津贴佣金、终身推荐佣金、冷静期定时计算 * 积分来源类型:销售佣金、一级管理佣金、二级管理佣金、辅导津贴佣金、终身推荐佣金、冷静期定时计算
*/ */
@TableField("source_type") @TableField("source_type")
......
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