1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yssh.dao;
|
| import com.yssh.entity.Qxsh;
| import org.apache.ibatis.annotations.Mapper;
|
| import java.util.List;
|
| /**
| * @author WWW
| * @date 2023-05-18
| * QxshMapper
| */
| @Mapper
| public interface QxshMapper {
| public List<Qxsh> selectByTime(String time);
| }
|
|