package com.qianwen.smartman.modules.perf.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; import com.qianwen.core.mp.mapper.BladeMapper; import com.qianwen.smartman.modules.smis.vo.GroupTreeVO; import com.qianwen.smartman.modules.perf.entity.EmployeeOnOffWork; import com.qianwen.smartman.modules.perf.vo.CurrWorkDetailVO; import com.qianwen.smartman.modules.perf.vo.OffEmployeeTreeVO; public interface EmployeeOnOffWorkMapper extends BladeMapper { List queryWork(@Param("wIds") List wIds, @Param("onType") Integer onType); List willOnWork(@Param("onType") Integer onType); List willOffWork(@Param("onType") Integer onType); List currWorkLog(@Param("workstationId") Long workstationId); }