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