1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.hx.other.service.model;
|
| import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
| import com.gitee.sunchenbin.mybatis.actable.annotation.Table;
| import lombok.Data;
|
| /**
| * 员工表
| * @Author: cmg
| * @Date: 2023/4/19 16:52
| */
| @Table(name="employee")
| @Data
| public class Employee extends BaseEntity{
|
| @Column(comment = "中文名称")
| private String cnName;
| }
|
|