对比新文件 |
| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.mybatis_config.MyBaseMapper; |
| | | import com.yuanchu.mom.pojo.PerformanceShift; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 缁╂晥绠$悊-鐝 Mapper 鎺ュ彛 |
| | | * </p> |
| | | * |
| | | * @author 姹熻嫃榈烽洀缃戠粶绉戞妧鏈夐檺鍏徃 |
| | | * @since 2024-05-08 09:12:04 |
| | | */ |
| | | public interface PerformanceShiftMapper extends MyBaseMapper<PerformanceShift> { |
| | | |
| | | IPage<Map<String, Object>> performanceShiftPage( |
| | | Page<Object> page, |
| | | @Param("time") String time, |
| | | @Param("userName") String userName, |
| | | @Param("laboratory") String laboratory |
| | | ); |
| | | } |