feat(salary): 添加批量发放薪资功能

- 在 GearSalaryRecordsBo 中添加 employeeIds 字段用于存储员工 ID 数组
- 在 GearSalaryRecordsController 中添加 batchSendSalary 接口
- 在 GearSalaryRecordsServiceImpl 中实现 batchSendSalary 方法
- 在 IGearSalaryRecordsService 中添加 batchSendSalary 接口定义
This commit is contained in:
2025-08-09 14:14:43 +08:00
parent e17b0f9d27
commit 383f34804d
4 changed files with 38 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ import java.util.Date;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gear.common.core.domain.BaseEntity;
@@ -93,6 +95,7 @@ public class GearSalaryRecordsBo extends BaseEntity {
* 发放状态
*/
private String payStatus;
//employee_id数组
private List<Long> employeeIds;
}