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