xin sfd
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xin sfd相关的知识,希望对你有一定的参考价值。
int saveCategoryName(Category category);
int deleteCategoryById(@Param("categoryID")String categoryID);
<insert id="saveCategoryName" parameterType="com.project714.dto.Category">
insert into t_category(
<if test=‘categoryName != null‘>
category_name,
</if>
<if test=‘parentCategoryID != null‘>
parent_id,
</if>
<if test=‘ifOnLine != null‘>
category_state,
</if>
)values (
<if test=‘categoryName != null‘>
#{categoryName},
</if>
<if test=‘parentCategoryID != null‘>
#{parentCategoryID},
</if>
<if test=‘ifOnLine != null‘>
#{ifOnLine},
</if>
)
</insert>
<delete id="deleteCategoryById" parameterType="java.lang.String">
delete from t_category where category_id=#{categoryID}
</delete>
以上是关于xin sfd的主要内容,如果未能解决你的问题,请参考以下文章