tangzy
2022-07-21 a98b1db4392c357304036e8b3cdd01646920300d
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;
 
}