yangys
8 天以前 f4c6e0e1308bccb943ca1cddfdf7f643b6b6a1aa
1
2
3
4
5
6
7
8
9
<?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="org.springblade.mdm.program.mapper.ProgramSeqMapper">
 
    <insert id="insert" useGeneratedKeys="true" keyProperty="id">
        INSERT INTO mdm_program_seq(create_time)
        VALUES(current_time)
    </insert>
</mapper>