tjx
2025-06-02 15bede06b7c253495c82886ee485788e06d83f08
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();
    }
}