12345678910111213141516 |
- <?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.zhgd.scs.mapper.SysUserProjectRefMapper">
- <resultMap id="BaseResultMap" type="com.zhgd.scs.domain.SysUserProjectRef">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="userId" column="user_id" jdbcType="BIGINT"/>
- <result property="projectId" column="project_id" jdbcType="BIGINT"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,user_id,project_id
- </sql>
- </mapper>
|