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="cn.com.ty.lift.business.project.dao.mapper.ProjectUserMapper" >
- <resultMap id="BaseResultMap" type="cn.com.ty.lift.business.project.dao.entity.ProjectUser" >
- <id column="project_id" property="projectId" jdbcType="BIGINT" />
- <id column="user_id" property="userId" jdbcType="BIGINT" />
- <id column="user_role" property="userRole" jdbcType="TINYINT" />
- <result column="mt_company_id" property="mtCompanyId" jdbcType="BIGINT" />
- <result column="is_monitor" property="isMonitor" jdbcType="TINYINT" />
- </resultMap>
- <sql id="Base_Column_List" >
- project_id, user_id, user_role, mt_company_id, is_monitor
- </sql>
- </mapper>
|