1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.zy.asrs.entity;
|
| import com.baomidou.mybatisplus.annotations.TableId;
| import com.baomidou.mybatisplus.annotations.TableName;
| import com.baomidou.mybatisplus.enums.IdType;
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| @TableName("asr_config_type")
| public class ConfigType {
| @TableId(value = "id", type = IdType.AUTO)
| private Long id;
| private String type;
| private String value;
| private Date createTime;
| }
|
|