Blame view

backend/bpm-runtime/src/main/resources/mapper/MeetingRoomMapper.xml 951 Bytes
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.hotent.runtime.dao.MeetingRoomDao">
	<resultMap id="MeetingRoom" type="com.hotent.runtime.model.MeetingRoom">
		<id property="id" column="ID_" jdbcType="VARCHAR"/>
		<result property="name" column="NAME_" jdbcType="VARCHAR"/>
		<result property="needPending" column="NEED_PENDING_" jdbcType="NUMERIC"/>
		<result property="pendingUserId" column="PENDING_USER_ID_" jdbcType="VARCHAR"/>
		<result property="pendingUserName" column="PENDING_USER_NAME_" jdbcType="VARCHAR"/>
		<result property="supportService" column="SUPPORT_SERVICE_" jdbcType="VARCHAR"/>
		<result property="location" column="LOCATION_" jdbcType="VARCHAR"/>
		<result property="capacity" column="CAPACITY_" jdbcType="NUMERIC"/>
		<result property="memo" column="MEMO_" jdbcType="VARCHAR"/>
	</resultMap>
	
</mapper>