Commit fdbedd02 authored by fangxinjiang's avatar fangxinjiang

商险优化

parent 3b66b4d8
...@@ -191,4 +191,16 @@ public class InsuranceBatchParam implements Serializable { ...@@ -191,4 +191,16 @@ public class InsuranceBatchParam implements Serializable {
@Schema(description = "是否BPO", name = "bpoFlag") @Schema(description = "是否BPO", name = "bpoFlag")
@ExcelIgnore @ExcelIgnore
private String bpoFlag; private String bpoFlag;
@Schema(description = "项目名称")
private String deptName;
@Schema(description ="客户id")
private String unitId;
@Schema(description ="客户名称")
private String unitName;
@Schema(description ="客户编码")
private String unitNo;
} }
...@@ -2324,6 +2324,10 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -2324,6 +2324,10 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
} }
param.setBpoFlag(projectSetInfoVo.getBpoFlag()); param.setBpoFlag(projectSetInfoVo.getBpoFlag());
param.setDeptId(projectSetInfoVo.getId()); param.setDeptId(projectSetInfoVo.getId());
param.setDeptName(projectSetInfoVo.getDepartName());
param.setUnitId(projectSetInfoVo.getCustomerId());
param.setUnitName(projectSetInfoVo.getCustomerName());
param.setUnitNo(projectSetInfoVo.getCustomerCode());
} }
} }
} }
......
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