package com.gunshi.project.hsz.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.hsz.model.RotaB; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface RotaBMapper extends BaseMapper { @Select(""" """) List query(@Param("yearMonth") String yearMonth); @Select(""" """) List dateList(@Param("rotaDate") String rotaDate); @Select(""" """) Long queryUser(@Param("value") String value); }