fix(StandardDocumentMapper): 修复查询语句主键字段未加引号问题(Oracle)

master
zangch@mesnac.com 2 days ago
parent 0a3f2010ec
commit 8b0cd0fc1c

@ -41,7 +41,7 @@
<if test="productName != null and productName != ''"> and "product_name" like concat(concat('%', #{productName}), '%')</if>
<if test="status != null and status != ''"> and "status" = #{status}</if>
</where>
order by obj_id desc
order by "obj_id" desc
</select>
<select id="selectStandardDocumentByObjId" parameterType="Long" resultMap="StandardDocumentResult">

Loading…
Cancel
Save