package pwc.taxtech.atms.dto.arearegion;

import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;

public class CityInfo {

    //The identifier.
    private String ID;
    
    //The name
    private String name;
    
    //The parent identifier
    @JSONField(name="parentId")
    @JsonProperty("parentId")
    private String parentID;

    /**
     * @return the id
     */
    public String getID() {
        return ID;
    }

    /**
     * @param id the id to set
     */
    public void setID(String ID) {
        this.ID = ID;
    }

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the parentId
     */
    public String getParentId() {
        return parentID;
    }

    /**
     * @param parentId the parentId to set
     */
    public void setParentId(String parentId) {
        this.parentID = parentId;
    }
    
    
}