仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lims-after
lims后端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
LIMS管理系统框架-开发7-27第二次标准库完成修改
XiaoRuby
2023-07-27
ad7151b14f2721b0fa40a903c6e65a2c511dd4c5
[lims-after.git]
/
laboratory-server
/
src
/
main
/
resources
/
mapper
/
EquipmentPointMapper.xml
1
2
3
4
5
6
7
8
9
10
11
<?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.yuanchu.limslaboratory.mapper.EquipmentPointMapper">
<select id="getListEquipmentPointInformation" resultType="map">
SELECT e.`id`, e.`equipment_point` equipmentPoint, e.`equipment_point_name` equipmentPointName, e.`unit`,u.`name`, DATE_FORMAT(e.`update_time`, '%Y-%m-%d') updateTime, e.`descriptiveness`
FROM equipment_point e, `user` u
WHERE e.`user_id` = u.`id`
AND e.`instrument_id` = #{InstrumentId}
</select>
</mapper>