IdStrategy.java 336 字节
Newer Older
M
MaxKey 已提交
1
package org.dromara.mybatis.jpa.id;
M
SERIAL  
MaxKey 已提交
2 3 4

public class IdStrategy {

M
MaxKey 已提交
5
	public static final  String SERIAL			= "serial";
M
SERIAL  
MaxKey 已提交
6
	
M
update  
MaxKey 已提交
7
	public static final  String UUID			= "uuid";
M
SERIAL  
MaxKey 已提交
8
	
M
MaxKey 已提交
9
	public static final  String UUIDHEX			= "uuid.hex";
M
SERIAL  
MaxKey 已提交
10
	
M
MaxKey 已提交
11
	public static final  String SNOWFLAKEID		= "snowflakeid";
M
SERIAL  
MaxKey 已提交
12
	
M
MaxKey 已提交
13
	public static final  String DEFAULT			= "default";
M
MaxKey 已提交
14
	
M
SERIAL  
MaxKey 已提交
15
}