|
@@ -24,8 +24,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
|
- <select id="selectEnterpriseById" parameterType="Long" resultMap="EnterpriseResult">
|
|
|
- <include refid="selectEnterpriseVo"/>
|
|
|
+ <select id="selectEnterpriseById" parameterType="Long" >
|
|
|
+ SELECT a.id, a.enterprise_name enterpriseName, a.location, a.code, a.type_num typeNum, b.name typeName
|
|
|
+ from enterprise a
|
|
|
+ left join enterprise_type b
|
|
|
+ on a.type_num = b.number
|
|
|
where id = #{id}
|
|
|
</select>
|
|
|
|