This commit is contained in:
yyhouc 2023-04-11 10:01:34 +08:00
parent c1155f5570
commit d3c1fd3e3c
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
<?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.kening.vordm.mapper.ContactMapper">
<resultMap id="BaseResultMap" type="com.kening.vordm.entity.Contact">
<result property="userName" column="user_name" jdbcType="VARCHAR"/>
<result property="email" column="email" jdbcType="VARCHAR"/>
<result property="organization" column="organization" jdbcType="VARCHAR"/>
<result property="message" column="message" jdbcType="VARCHAR"/>
<result property="id" column="id" jdbcType="BIGINT"/>
</resultMap>
<sql id="Base_Column_List">
user_name,email,organization,
message,id
</sql>
</mapper>