1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.iotechn.unimall.data.domain;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import lombok.Data;
|
| /**
| * Created with IntelliJ IDEA.
| * Description: 字段映射模型
| * User: rize
| * Date: 2020/3/11
| * Time: 11:11
| */
| @Data
| public class GeneratorTableColumnDO {
|
| @TableField("Field")
| private String field;
|
| @TableField("Type")
| private String type;
|
| private String Null;
|
| }
|
|