仪表盘
版本库
文件存储
活动
搜索
登录
main
/
PM20220923166_Service
燕山石化溯源三维电子沙盘-【后端】-服务
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
开发根据日期查询污染点详情值接口
13693261870
2023-05-18
37c298b6027352872cb72cffa254442a6aa7b2b0
[PM20220923166_Service.git]
/
src
/
main
/
resources
/
mapping
/
QxshMapper.xml
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yssh.dao.QxshMapper">
<select id="selectByTime" resultType="com.yssh.entity.Qxsh">
select id, name, lon, lat, value, time
from yssh_qxsh
where time =#{time}
order by name;
</select>
</mapper>