111
wang-hao-jie
2022-08-25 d90da0759bd93c7f429f6a20bc835782ad927c02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.boying.entity;
 
import com.boying.common.BaseEntity;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
@Table(name = "dictionary")
@Entity
public class Dictionary extends BaseEntity {
 
    private int type;
    private String name;
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
}