Commit c2155c42 authored by zhengjie's avatar zhengjie
Browse files

调整ID生成策略

parent d5ee3681
...@@ -14,7 +14,6 @@ import javax.persistence.*; ...@@ -14,7 +14,6 @@ import javax.persistence.*;
public class GenConfig { public class GenConfig {
@Id @Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id; private Long id;
/** 包路径 **/ /** 包路径 **/
......
...@@ -16,7 +16,6 @@ import java.io.Serializable; ...@@ -16,7 +16,6 @@ import java.io.Serializable;
public class AlipayConfig implements Serializable { public class AlipayConfig implements Serializable {
@Id @Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id; private Long id;
/** /**
......
...@@ -17,7 +17,6 @@ import java.io.Serializable; ...@@ -17,7 +17,6 @@ import java.io.Serializable;
public class EmailConfig implements Serializable { public class EmailConfig implements Serializable {
@Id @Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id; private Long id;
/** /**
......
...@@ -16,7 +16,6 @@ import java.io.Serializable; ...@@ -16,7 +16,6 @@ import java.io.Serializable;
public class QiniuConfig implements Serializable { public class QiniuConfig implements Serializable {
@Id @Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id; private Long id;
/** /**
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment