dashboard
repositories
filestore
activity
search
login
彭雪彬
/
oyingServer
forked from
oyingServer
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
fix: Long类型转换为字符串
zepengdev
2025-06-26
62d208a5324a8161e030877a0bf1ab15a3a5b303
[~pxb/oyingServer.git]
/
oying-system
/
src
/
main
/
java
/
com
/
oying
/
modules
/
pc
/
common
/
id
/
StoreIdentifierGenerator.java
1
2
3
4
5
6
7
8
9
10
11
package com.oying.modules.pc.common.id;
import com.baomidou.mybatisplus.core.incrementer.IdentifierGenerator;
public class StoreIdentifierGenerator implements IdentifierGenerator {
@Override
public Number nextId(Object entity) {
return null;
}
}