tjx
2 天以前 4cb1c6b66795468cbe361b66ae261159b7d9aedd
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.hk.NumericalCollection.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();
    }
}