You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.6 KiB
31 lines
1.6 KiB
8 months ago
|
<?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.ruoyi.system.mapper.TdMeetingMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.ruoyi.system.domain.TdMeeting">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="meetingTitle" column="meeting_title" jdbcType="VARCHAR"/>
|
||
|
<result property="meetingTime" column="meeting_time" jdbcType="DATE"/>
|
||
|
<result property="meetingAddress" column="meeting_address" jdbcType="VARCHAR"/>
|
||
|
<result property="meetingUsernum" column="meeting_usernum" jdbcType="INTEGER"/>
|
||
|
<result property="meetingHost" column="meeting_host" jdbcType="VARCHAR"/>
|
||
|
<result property="meetingType" column="meeting_type" jdbcType="VARCHAR"/>
|
||
|
<result property="meetingState" column="meeting_state" jdbcType="VARCHAR"/>
|
||
|
<result property="agenda" column="agenda" jdbcType="VARCHAR"/>
|
||
|
<result property="summary" column="summary" jdbcType="VARCHAR"/>
|
||
|
<result property="fileId" column="file_id" jdbcType="VARCHAR"/>
|
||
|
<result property="remarks" column="remarks" jdbcType="VARCHAR"/>
|
||
|
<result property="fileName" column="file_name" jdbcType="VARCHAR"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,meeting_title,meeting_time,
|
||
|
meeting_address,meeting_usernum,meeting_host,
|
||
|
meeting_type,meeting_state,agenda,
|
||
|
summary,file_id,remarks,
|
||
|
file_name
|
||
|
</sql>
|
||
|
</mapper>
|