feat(salary): 添加批量发放薪资功能
- 在 GearSalaryRecordsBo 中添加 employeeIds 字段用于存储员工 ID 数组 - 在 GearSalaryRecordsController 中添加 batchSendSalary 接口 - 在 GearSalaryRecordsServiceImpl 中实现 batchSendSalary 方法 - 在 IGearSalaryRecordsService 中添加 batchSendSalary 接口定义
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user