二条
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package cn.dnect.company.entity;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.*;
/**
* Created with IntelliJ IDEA.
* Date: 2019/2/12
* Time: 15:06
*
* @author: 二条
* Description:
*/
@Entity
@Table(name = "company")
@Getter
@Setter
public class Company {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
}
|