You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
652 B
20 lines
652 B
2 years ago
|
<?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.hnac.hzims.scheduled.mapper.equipment.DeviceMapper">
|
||
|
|
||
|
<select id="device" resultType="com.hnac.hzims.equipment.vo.EminfoAndEmParamVo">
|
||
|
SELECT
|
||
|
ID AS id,
|
||
|
`NAME` AS NAME,
|
||
|
`NUMBER` AS emCode,
|
||
|
CREATE_DEPT AS createDept,
|
||
|
RUN_STATUS AS runStatus,
|
||
|
EM_INDEX AS ord
|
||
|
FROM
|
||
|
`hzims_em_info`
|
||
|
WHERE
|
||
|
IS_DELETED = 0
|
||
|
AND HOME_PAGE_DISPLAY = 1
|
||
|
</select>
|
||
|
</mapper>
|