format
parent
cb7af9a547
commit
9f8cb8759b
|
@ -49,19 +49,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<update id="update${className}" parameterType="${className}">
|
<update id="update${className}" parameterType="${className}">
|
||||||
update ${tableName}
|
update ${tableName}
|
||||||
<trim prefix="SET" suffixOverrides=",">
|
<trim prefix="SET" suffixOverrides=",">
|
||||||
#foreach($column in $columns)
|
#foreach($column in $columns)
|
||||||
#if($column.columnName != $primaryKey.columnName)
|
#if($column.columnName != $primaryKey.columnName)
|
||||||
<if test="$column.attrname != null #if($column.attrType == 'String' ) and $column.attrname != '' #end ">
|
<if test="$column.attrname != null #if($column.attrType == 'String' ) and $column.attrname != '' #end ">$column.columnName = #{$column.attrname},</if>
|
||||||
$column.columnName = #{$column.attrname},
|
#end
|
||||||
</if>
|
#end
|
||||||
#end
|
|
||||||
#end
|
|
||||||
</trim>
|
</trim>
|
||||||
where ${primaryKey.columnName} = #{${primaryKey.attrname}}
|
where ${primaryKey.columnName} = #{${primaryKey.attrname}}
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<delete id="delete${className}ById" parameterType="${primaryKey.attrType}">
|
<delete id="delete${className}ById" parameterType="${primaryKey.attrType}">
|
||||||
delete from ${tableName} where ${primaryKey.columnName} = #{${primaryKey.attrname}}
|
delete from ${tableName} where ${primaryKey.columnName} = #{${primaryKey.attrname}}
|
||||||
</delete>
|
</delete>
|
||||||
|
|
Loading…
Reference in New Issue