mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 05:42:06 +08:00
1、新增 待选转加工、新增加工配置接口名称序列累计能力;2、移除覆盖设置接口;3、装配设置删除接口支持删除导入状态;
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cf.imes.module.system.dal.mysql.assemblyconfig.AssemblyConfigNameSeqMapper">
|
||||
|
||||
<!-- 1. 原子生成序号 -->
|
||||
<insert id="nextSeq"
|
||||
useGeneratedKeys="true"
|
||||
keyProperty="nextNo"
|
||||
keyColumn="nextNo">
|
||||
INSERT INTO system_config_assembly_name_seq(organ_id, base_name, next_no)
|
||||
VALUES (#{organId}, #{baseName}, LAST_INSERT_ID(1))
|
||||
ON DUPLICATE KEY UPDATE next_no = LAST_INSERT_ID(next_no + 1)
|
||||
</insert>
|
||||
|
||||
|
||||
</mapper>
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user