feat(wms): 添加考勤排班、班次及倒班规则功能模块
- 新增 IWmsAttendanceScheduleService 接口及其实现类 - 新增 IWmsAttendanceShiftService 接口及其实现类 - 新增 IWmsAttendanceShiftRuleService 接口及其实现类 - 添加 WmsAttendanceSchedule、WmsAttendanceShift、WmsAttendanceShiftRule 实体类 - 创建对应的 BO 和 VO 类用于数据传输 - 添加 WmsAttendanceScheduleController、WmsAttendanceShiftController、WmsAttendanceShiftRuleController 控制器 - 新增相应的 Mapper 接口和 XML 映射文件 - 实现分页查询、新增、修改、删除等基础功能 - 集成 Excel 导出功能和数据校验机制
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.klp.service;
|
||||
|
||||
import com.klp.domain.WmsAttendanceSchedule;
|
||||
import com.klp.domain.vo.WmsAttendanceScheduleVo;
|
||||
import com.klp.domain.bo.WmsAttendanceScheduleBo;
|
||||
import com.klp.common.core.page.TableDataInfo;
|
||||
import com.klp.common.core.domain.PageQuery;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 排班(谁在哪天上班)Service接口
|
||||
*
|
||||
* @author klp
|
||||
* @date 2026-05-08
|
||||
*/
|
||||
public interface IWmsAttendanceScheduleService {
|
||||
|
||||
/**
|
||||
* 查询排班(谁在哪天上班)
|
||||
*/
|
||||
WmsAttendanceScheduleVo queryById(Long scheduleId);
|
||||
|
||||
/**
|
||||
* 查询排班(谁在哪天上班)列表
|
||||
*/
|
||||
TableDataInfo<WmsAttendanceScheduleVo> queryPageList(WmsAttendanceScheduleBo bo, PageQuery pageQuery);
|
||||
|
||||
/**
|
||||
* 查询排班(谁在哪天上班)列表
|
||||
*/
|
||||
List<WmsAttendanceScheduleVo> queryList(WmsAttendanceScheduleBo bo);
|
||||
|
||||
/**
|
||||
* 新增排班(谁在哪天上班)
|
||||
*/
|
||||
Boolean insertByBo(WmsAttendanceScheduleBo bo);
|
||||
|
||||
/**
|
||||
* 修改排班(谁在哪天上班)
|
||||
*/
|
||||
Boolean updateByBo(WmsAttendanceScheduleBo bo);
|
||||
|
||||
/**
|
||||
* 校验并批量删除排班(谁在哪天上班)信息
|
||||
*/
|
||||
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
||||
}
|
||||
Reference in New Issue
Block a user