You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
407 B
Java
23 lines
407 B
Java
|
4 years ago
|
package com.ipsos.base.domain;
|
||
|
5 years ago
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class AreaMapping implements Serializable {
|
||
|
|
private Long id;
|
||
|
|
|
||
|
|
private String provinceName;
|
||
|
|
|
||
|
|
private String provinceCode;
|
||
|
|
|
||
|
|
private String cityName;
|
||
|
|
|
||
|
|
private String cityCode;
|
||
|
|
|
||
|
|
private String countyName;
|
||
|
|
|
||
|
|
private String countyCode;
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
}
|