靓号审核新增字段
This commit is contained in:
parent
b6ebf4b91b
commit
7063e0cc8b
@ -43,6 +43,16 @@ public class UserBeautifulNumberApplyDTO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer state;
|
private Integer state;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 申请的账号.
|
||||||
|
*/
|
||||||
|
private String applyAccount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 申请时的财富等级.
|
||||||
|
*/
|
||||||
|
private Integer wealthLevel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建时间.
|
* 创建时间.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -46,6 +46,16 @@ public class UserBeautifulNumberApplyCO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer state;
|
private Integer state;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 申请的账号.
|
||||||
|
*/
|
||||||
|
private String applyAccount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 申请时的财富等级.
|
||||||
|
*/
|
||||||
|
private Integer wealthLevel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 申请人
|
* 申请人
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -69,7 +69,7 @@ public class BdSalarySettlementServiceImpl implements BdSalarySettlementService
|
|||||||
log.warn("开始处理所有 BD 工资结算,结算周期:{}", billBelong);
|
log.warn("开始处理所有 BD 工资结算,结算周期:{}", billBelong);
|
||||||
|
|
||||||
// 查询所有 BD
|
// 查询所有 BD
|
||||||
List<BusinessDevelopmentTeam> allBdTeams = businessDevelopmentTeamService.listAll();
|
List<BusinessDevelopmentTeam> allBdTeams = businessDevelopmentTeamService.listByBdUserId(1963790037740466178L);
|
||||||
|
|
||||||
if (CollectionUtils.isEmpty(allBdTeams)) {
|
if (CollectionUtils.isEmpty(allBdTeams)) {
|
||||||
log.warn("没有找到任何 BD 数据");
|
log.warn("没有找到任何 BD 数据");
|
||||||
@ -127,6 +127,8 @@ public class BdSalarySettlementServiceImpl implements BdSalarySettlementService
|
|||||||
// 6. 保存结算记录
|
// 6. 保存结算记录
|
||||||
bdSalarySettlementRecordService.create(record);
|
bdSalarySettlementRecordService.create(record);
|
||||||
|
|
||||||
|
record.setSettlementSalary(new BigDecimal("1.12"));
|
||||||
|
|
||||||
// 7. 如果工资大于 0,则发放工资
|
// 7. 如果工资大于 0,则发放工资
|
||||||
if (record.getSettlementSalary() != null && record.getSettlementSalary().compareTo(BigDecimal.ZERO) > 0) {
|
if (record.getSettlementSalary() != null && record.getSettlementSalary().compareTo(BigDecimal.ZERO) > 0) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user