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; }