28 lines
1.5 KiB
XML
28 lines
1.5 KiB
XML
|
|
<?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.rzyc.mapper.EntEmExpertMapper">
|
||
|
|
|
||
|
|
<!-- 通用查询映射结果 -->
|
||
|
|
<resultMap id="BaseResultMap" type="com.rzyc.model.EntEmExpert">
|
||
|
|
<id column="ent_em_expert_id" property="entEmExpertId" />
|
||
|
|
<result column="enterprise_id" property="enterpriseId" />
|
||
|
|
<result column="ent_em_expert_name" property="entEmExpertName" />
|
||
|
|
<result column="ent_em_expert_sex" property="entEmExpertSex" />
|
||
|
|
<result column="ent_em_expert_phone" property="entEmExpertPhone" />
|
||
|
|
<result column="ent_em_expert_class" property="entEmExpertClass" />
|
||
|
|
<result column="ent_em_expert_major" property="entEmExpertMajor" />
|
||
|
|
<result column="ent_em_expert_category" property="entEmExpertCategory" />
|
||
|
|
<result column="ent_em_expert_address" property="entEmExpertAddress" />
|
||
|
|
<result column="create_by" property="createBy" />
|
||
|
|
<result column="create_time" property="createTime" />
|
||
|
|
<result column="modify_by" property="modifyBy" />
|
||
|
|
<result column="modify_time" property="modifyTime" />
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<!-- 通用查询结果列 -->
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
ent_em_expert_id, enterprise_id, ent_em_expert_name, ent_em_expert_sex, ent_em_expert_phone, ent_em_expert_class, ent_em_expert_major, ent_em_expert_category, ent_em_expert_address, create_by, create_time, modify_by, modify_time
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
</mapper>
|