Blame view

SessionsDictMapper.java 637 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.meishu.mapper;

import com.meishu.model.SessionsDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 场次字典表 Mapper 接口
 * </p>
 *
 * @author DengMin
 * @since 2021-08-17
 */
 @Repository
public interface SessionsDictMapper extends BaseMapper<SessionsDictDO> {

    List<SessionsDictDO> getListById(@Param("laboratoryDictId") Long laboratoryDictId);

    List<SessionsDictDO> getListSessionDictById(@Param("laboratoryDictId") Long laboratoryDictId, String startDate);
}