SysUserProjectRefMapper.xml 628 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.zhgd.scs.mapper.SysUserProjectRefMapper">
  6. <resultMap id="BaseResultMap" type="com.zhgd.scs.domain.SysUserProjectRef">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="userId" column="user_id" jdbcType="BIGINT"/>
  9. <result property="projectId" column="project_id" jdbcType="BIGINT"/>
  10. </resultMap>
  11. <sql id="Base_Column_List">
  12. id,user_id,project_id
  13. </sql>
  14. </mapper>