tangzy
2021-09-08 b8bc64fb57ba906eba17f1fc9d87e5c789e39a0c
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;
 
}