ScreenOpenModeMapper.xml 764 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.welampiot.dao.ScreenOpenModeDao">
  4. <select id="getScreenOpenModeListByScreenId" resultType="ScreenOpenModeDTO">
  5. select
  6. s.id,s.mode,s.start_date as startDate,
  7. s.time1,s.status1,
  8. s.time2,s.status2,
  9. s.time3,s.status3,
  10. s.time4,s.status4,
  11. s.time5,s.status5,
  12. s.time6,s.status6,
  13. s.time7,s.status7,
  14. s.time8,s.status8,
  15. s.time9,s.status9,
  16. s.time10,s.status10
  17. from screen_open_mode s
  18. where s.screen_id = #{screenId}
  19. </select>
  20. </mapper>