duhuizhe
2024-04-19 64c4fd3c7067c7626dc960a70b4bc2c3662bc653
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
package com.yqzx.generator.action.model;
 
import lombok.Data;
 
/**
 * @description: 表信息
 * @author: chaoyapeng
 * @time: 2020/8/18 15:51
 */
@Data
public class Table {
    /**
     * label
     */
    private String label;
 
    /**
     * 表名
     */
    private String name;
 
    /**
     * 注释
     */
    private String comment;
}