|
@@ -9,11 +9,10 @@
|
|
|
<resultMap type="com.ym.mec.web.dal.entity.Organization" id="Organization">
|
|
|
<result column="id_" property="id"/>
|
|
|
<result column="name_" property="name"/>
|
|
|
- <result column="code_" property="code"/>
|
|
|
+ <result column="area_id_" property="areaId"/>
|
|
|
<result column="create_time_" property="createTime"/>
|
|
|
<result column="update_time_" property="updateTime"/>
|
|
|
<result column="del_flag_" property="delFlag" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
|
|
|
- <result column="parent_organ_id_" property="parentOrganId"/>
|
|
|
<result column="register_date_" property="registerDate"/>
|
|
|
<result column="linkman_" property="linkman"/>
|
|
|
<result column="mobile_" property="mobile"/>
|
|
@@ -33,13 +32,8 @@
|
|
|
<!-- 向数据库增加一条记录 -->
|
|
|
<insert id="insert" parameterType="com.ym.mec.web.dal.entity.Organization" useGeneratedKeys="true" keyColumn="id"
|
|
|
keyProperty="id">
|
|
|
- <!--
|
|
|
- <selectKey resultClass="int" keyProperty="id" >
|
|
|
- SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
|
|
|
- </selectKey>
|
|
|
- -->
|
|
|
- INSERT INTO organization (id_,name_,code_,create_time_,update_time_,parent_organ_id_,register_date_,linkman_,mobile_,address_)
|
|
|
- VALUES(#{id},#{name},#{code},now(),now(),#{parentOrganId},#{registerDate},#{linkman},#{mobile},#{address})
|
|
|
+ INSERT INTO organization (id_,name_,area_id_,create_time_,update_time_,register_date_,linkman_,mobile_,address_)
|
|
|
+ VALUES(#{id},#{name},#{areaId},now(),now(),#{registerDate},#{linkman},#{mobile},#{address})
|
|
|
</insert>
|
|
|
|
|
|
<!-- 根据主键查询一条记录 -->
|
|
@@ -49,11 +43,8 @@
|
|
|
<if test="delFlag != null">
|
|
|
del_flag_ = #{delFlag,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
</if>
|
|
|
- <if test="parentOrganId != null">
|
|
|
- parent_organ_id_ = #{parentOrganId},
|
|
|
- </if>
|
|
|
- <if test="code != null">
|
|
|
- code_ = #{code},
|
|
|
+ <if test="areaId != null">
|
|
|
+ area_id_ = #{areaId},
|
|
|
</if>
|
|
|
<if test="updateTime != null">
|
|
|
update_time_ = #{updateTime},
|
|
@@ -84,11 +75,8 @@
|
|
|
|
|
|
<sql id="queryPageSql">
|
|
|
<where>
|
|
|
- <if test="parentId != null">
|
|
|
- parent_organ_id_ = #{parentId}
|
|
|
- </if>
|
|
|
<if test="delFlag != null">
|
|
|
- AND del_flag_ = #{delFlag,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
|
|
|
+ del_flag_ = #{delFlag,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
|
|
|
</if>
|
|
|
</where>
|
|
|
</sql>
|
|
@@ -109,8 +97,4 @@
|
|
|
<select id="findByParentId" resultMap="Organization">
|
|
|
SELECT * FROM organization <include refid="queryPageSql"/>
|
|
|
</select>
|
|
|
-
|
|
|
- <select id="findByCode" resultMap="Organization">
|
|
|
- SELECT * FROM organization WHERE code = #{code}
|
|
|
- </select>
|
|
|
</mapper>
|