|
@@ -14,7 +14,7 @@
|
|
|
<result column="img_" property="img"/>
|
|
|
<result column="create_time_" property="createTime"/>
|
|
|
<result column="update_time_" property="updateTime"/>
|
|
|
- <result column="del_flag_" property="delFlag" typeHandler="com.keao.edu.common.dal.CustomEnumTypeHandler"/>
|
|
|
+ <result column="del_flag_" property="delFlag"/>
|
|
|
<result column="tenant_id_" property="tenantId"/>
|
|
|
</resultMap>
|
|
|
|
|
@@ -40,7 +40,7 @@
|
|
|
UPDATE subject
|
|
|
<set>
|
|
|
<if test="delFlag != null">
|
|
|
- del_flag_ = #{delFlag,typeHandler=com.keao.edu.common.dal.CustomEnumTypeHandler},
|
|
|
+ del_flag_ = #{delFlag},
|
|
|
</if>
|
|
|
<if test="parentSubjectId != null">
|
|
|
parent_subject_id_ = #{parentSubjectId},
|
|
@@ -115,7 +115,7 @@
|
|
|
AND tenant_id_ = #{tenantId}
|
|
|
</if>
|
|
|
<if test="delFlag != null">
|
|
|
- AND del_flag_ = #{delFlag,typeHandler=com.keao.edu.common.dal.CustomEnumTypeHandler}
|
|
|
+ AND del_flag_ = #{delFlag}
|
|
|
</if>
|
|
|
</where>
|
|
|
</sql>
|