1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package org.springblade.modules.city.entity;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| @Data
| @TableName("city")
| @ApiModel(value = "", description = "")
| public class City {
|
| private String addvcd;
| private String addvnm;
| private String comments;
| private String moditime;
|
| }
|
|