您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
24 行
459 B
24 行
459 B
package com.ceis.convert.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.*;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @version 1.0
|
|
* @Auther: nelson
|
|
* @company 北京中经网软件有限公司
|
|
* @Date: 2020/9/14
|
|
*/
|
|
@Data
|
|
@MappedSuperclass
|
|
public class IDEntity implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
@Id
|
|
@Column(columnDefinition = "INT UNSIGNED")
|
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
|
protected Integer id;
|
|
}
|
|
|