靓号审核新增字段

This commit is contained in:
tianfeng 2025-12-12 17:30:31 +08:00
parent b6ebf4b91b
commit 7063e0cc8b
3 changed files with 23 additions and 1 deletions

View File

@ -43,6 +43,16 @@ public class UserBeautifulNumberApplyDTO implements Serializable {
*/
private Integer state;
/**
* 申请的账号.
*/
private String applyAccount;
/**
* 申请时的财富等级.
*/
private Integer wealthLevel;
/**
* 创建时间.
*/

View File

@ -46,6 +46,16 @@ public class UserBeautifulNumberApplyCO implements Serializable {
*/
private Integer state;
/**
* 申请的账号.
*/
private String applyAccount;
/**
* 申请时的财富等级.
*/
private Integer wealthLevel;
/**
* 申请人
*/

View File

@ -69,7 +69,7 @@ public class BdSalarySettlementServiceImpl implements BdSalarySettlementService
log.warn("开始处理所有 BD 工资结算,结算周期:{}", billBelong);
// 查询所有 BD
List<BusinessDevelopmentTeam> allBdTeams = businessDevelopmentTeamService.listAll();
List<BusinessDevelopmentTeam> allBdTeams = businessDevelopmentTeamService.listByBdUserId(1963790037740466178L);
if (CollectionUtils.isEmpty(allBdTeams)) {
log.warn("没有找到任何 BD 数据");
@ -127,6 +127,8 @@ public class BdSalarySettlementServiceImpl implements BdSalarySettlementService
// 6. 保存结算记录
bdSalarySettlementRecordService.create(record);
record.setSettlementSalary(new BigDecimal("1.12"));
// 7. 如果工资大于 0则发放工资
if (record.getSettlementSalary() != null && record.getSettlementSalary().compareTo(BigDecimal.ZERO) > 0) {
try {