Commit cd5605ca by zhangxingmin

push

parent 6fd075da
......@@ -490,6 +490,7 @@ public class ApiSalaryServiceImpl implements ApiSalaryService {
wrapper.eq(Salary::getBrokerBizId, brokerBizId)
.likeRight(Salary::getMonth, year) // month 为 yyyyMM,匹配前四位年份
.eq(Salary::getIsDeleted, 0)
.eq(Salary::getStatus, SalaryStatusEnum.YTS.getItemValue()) //已推送状态
.orderByDesc(Salary::getMonth); // 按月份降序排列(最近的在前面)
List<Salary> salaryList = iSalaryService.list(wrapper);
......
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