tjx
2025-05-26 b5f4b52e998471e8286c2f6ec4267f7bc7b01e0d
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.gs.xky.config;
 
import com.baomidou.mybatisplus.extension.incrementer.OracleKeyGenerator;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class MybatisPlusConfig {
    @Bean
    public OracleKeyGenerator oracleKeyGenerator() {
        return new OracleKeyGenerator();
    }
}