1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.zzg.system.domain.vo;
|
| import cn.afterturn.easypoi.excel.annotation.Excel;
| import lombok.Data;
|
| /**
| * 镇村组初始化导入
| */
| @Data
| public class City {
|
| @Excel(name = "镇(街道)")
| private String town;
| @Excel(name = "村(社区)")
| private String village;
| @Excel(name = "类型")
| private String type;
| @Excel(name = "小组数(个)")
| private Integer num;
| }
|
|