ChannelMapper.xml 463 B

12345678910
  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.ytpm.dao.ChannelMapper">
  4. <select id="channelList" resultType="com.ytpm.agent.view.AgentChannelView">
  5. select
  6. channel_id, channel_name, login_type, channel_account, channel_pwd, channel_status, api_key, api_secret, remark
  7. from yt_channel
  8. </select>
  9. </mapper>