| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.springblade.modules.healthcode.entity.healthcode; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * Mapper 接口 |
| | | * |
| | |
| | | * @since 2020-07-19 |
| | | */ |
| | | public interface healthcodeMapper extends BaseMapper<healthcode> { |
| | | int insert(String type, String jname, String province, String city, String district, String dtime); |
| | | int insert(String type, String sex, String province, String city, String district, String dtime); |
| | | List<Map<String, Object>> selectCountr(String time); |
| | | List<Map<String, Object>> selectCountz(String beginTime,String endTime); |
| | | } |