73a51a22ee097f8143c7a32e2cfc4b02f7461cca.svn-base 561 B

123456789101112131415161718
  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="org.jeecg.modules.demo.hzz.yhyc.mapper.RmRwqdMapper">
  4. <delete id="deleteByMainId" parameterType="java.lang.String">
  5. DELETE
  6. FROM rm_rwqd
  7. WHERE
  8. main_id = #{mainId}
  9. </delete>
  10. <select id="selectByMainId" parameterType="java.lang.String" resultType="org.jeecg.modules.demo.hzz.yhyc.entity.RmRwqd">
  11. SELECT *
  12. FROM rm_rwqd
  13. WHERE
  14. main_id = #{mainId}
  15. </select>
  16. </mapper>