1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.yqzx.generator.action.model;
|
| import lombok.Data;
|
| /**
| * @description: 表信息
| * @author: chaoyapeng
| * @time: 2020/8/18 15:51
| */
| @Data
| public class TableInfo {
| private boolean last;
|
| private String propertyName;
|
| private String name;
|
| private String type;
|
| private String jdbcType;
|
| private String comment;
| }
|
|