码迷,mamicode.com
首页 > 其他好文 > 详细

xin sfd

时间:2017-09-10 15:03:48      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:rom   string   from   project   str   where   category   ram   type   

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

标签:rom   string   from   project   str   where   category   ram   type   

原文地址:http://www.cnblogs.com/panxuejun/p/7500955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!