添加生成唯一单据编号功能

This commit is contained in:
cjl
2019-02-01 15:40:44 +08:00
parent a95389ecbf
commit 66baa3dfa0
7 changed files with 92 additions and 2 deletions

View File

@@ -389,5 +389,8 @@
</set>
where Id = #{id,jdbcType=BIGINT}
</update>
<select id="getBuildOnlyNumber" resultType="java.lang.Long">
select _nextval(#{seq_name}) from dual;
</select>
</mapper>